-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Liparakis edited this page Jul 12, 2026
·
6 revisions
Chunkis is a Minecraft Fabric mod that replaces vanilla chunk persistence with a Chunkis-managed storage pipeline.
It provides:
- CIS-based chunk storage
- Runtime mutation tracking
- Snapshot-based persistence
- Chunk restoration during world loading
- Vanilla full-chunk delivery of restored state
- CIS format migration
- Vanilla MCA → CIS world migration
- Storage inspection and debugging tools
Chunkis is actively developed for Minecraft 1.21.11 using Java 21 and Fabric.
Current priorities include stabilizing CIS persistence, preserving chunk metadata and entities, improving MCA → CIS migration, and validating durability through automated and game tests.
Chunkis is divided into four primary modules:
-
common— Shared models, codecs, compression, and debug structures -
storage— CIS storage engine, region files, mappings, and inspection tools -
migration— CIS version migrations and storage rewrites -
fabric— Minecraft integration, mixins, tracking, restoration, networking, and runtime migration
Start with Architecture for the complete system structure.
- Architecture
- System Overview
- Developer Guide
- Storage Format
- Delta and Ownership Model
- Load and Restore Pipeline
- Migration and Versioning
- Debugging
./gradlew build
./gradlew test
./gradlew runGameTestWhen changing persistence behavior, update the relevant architecture and format documentation alongside the code.