CurseForge · Minecraft mod
LinearReader
Make Minecraft worlds take up less space.
Quick answer
Which LinearReader release matches 26.1 Fabric?
linearreader-1.3.0 (fabric 26.1-26.2) targets 26.1, 26.1.1, 26.1.2 with Fabric. The project page does not say whether this file belongs on the client, dedicated server, or both. All 1 required mods have matching files.
Where it goes
Is LinearReader required on the client, server, or both?
The project page does not say whether this file belongs on the client, dedicated server, or both.
The source does not explicitly classify this release as client-only or server-only.
What else does linearreader-1.3.0 (fabric 26.1-26.2) need?
linearreader-1.3.0 (fabric 26.1-26.2) on 26.1 Fabric. Every mod below is checked against that same setup.
Install Fabric API first. We found matching files for this game-version and loader setup.
We only count dependency files that match this setup. A file for another loader does not fill the gap.
Before you install it
Add LinearReader without breaking your instance.
Built for linearreader-1.3.0 (fabric 26.1-26.2) on 26.1 Fabric. Pick another file and the loader, install side or required mods may change.
- 01
Stick to this file
Use linearreader-1.3.0 (fabric 26.1-26.2). It targets 26.1, 26.1.1, 26.1.2 with Fabric; another release may have different loader, side or dependency requirements.
- 02
Bring the mods it needs
Install Fabric API first. We found matching files for this game-version and loader setup.
- 03
Put it on the correct side
The project page does not say whether this file belongs on the client, dedicated server, or both.
- 04
Pick the file you checked
Use the “Get this file” button beside linearreader-1.3.0 (fabric 26.1-26.2). It opens that exact file at the source.
About this project
What does LinearReader add?
LinearReader
LinearReader is a server-side Minecraft mod that reduces your world size without negatively impacting gameplay. This is done mainly through using Xymb's Linear Region File Format in place of Minecraft's Anvil file format, and through utilizing Zstd for compression instead of the Zlib compression algorithm used by vanilla Minecraft.
How is World Size Reduced?
Xymb's Linear Region File Format is already a large step up from vanilla Minecraft's region file format, and greatly reduces world sizes.
The other necessary improvement is the compression algorithm and level of compression. Higher levels of compression require more resources and more time, which is not ideal for an active server, and lower levels obviously do not save as much storage. So the challenge was, how can LinearReader provide the speed of low-level compression and the storage savings of high-level compression?
LinearReader solves this by splitting the workload into two separate stages. Live writes are compressed quickly with low-level Zstd compression levels, leaving the CPU with plenty of resources to run Minecraft. Then later, when the server is idle, LinearReader will safely recompress the region files with much deeper compression.
Compression Benchmarks
To show LinearReader's storage gains and why high level compression is not used during live writes, I ran benchmarks for the Anvil file format with Zlib using Java’s default compression level (which is what Vanilla Minecraft uses), Zstd level 4 (which is what LinearReader usually uses for live writes), and Zstd level 22 (which LinearReader uses for recompression). For a deeper dive on the benchmarks, see the benchmarks/ directory.
| Dataset | Format | Size | Compression Ratio | Compression Speed | Decompression Speed |
|---|---|---|---|---|---|
| Overworld | Anvil/Zlib 6 | 8.38 GB | 5.44x | 75.7 MB/s | 1271.3 MB/s |
| Overworld | LinearReader (Zstd 4) | 6.21 GB | 7.39x | 585.5 MB/s | 1412.8 MB/s |
| Overworld | LinearReader (Zstd 22) | 4.28 GB | 10.71x | 4.4 MB/s | 1589.2 MB/s |
| End (mostly void) | Anvil/Zlib 6 | 2.16 GB | 3.66x | 188.4 MB/s | 1576.4 MB/s |
| End (mostly void) | LinearReader (Zstd 4) | 244 MB | 33.20x | 1811.1 MB/s | 4062.7 MB/s |
| End (mostly void) | LinearReader (Zstd 22) | 141 MB | 57.50x | 10.1 MB/s | 6166.9 MB/s |
| Tectonic + Terralith | Anvil/Zlib 6 | 2.56 GB | 5.97x | 84.1 MB/s | 1338.1 MB/s |
| Tectonic + Terralith | LinearReader (Zstd 4) | 1.80 GB | 8.49x | 735.8 MB/s | 1742.8 MB/s |
| Tectonic + Terralith | LinearReader (Zstd 22) | 1.24 GB | 12.37x | 4.4 MB/s | 1787.3 MB/s |
As is shown in the above table, LinearReader + Zstd achieves better compression while still maintaining fast compression and decompression speeds during normal gameplay, (Zstd 22 is used for the recompressor, which is not active during normal gameplay).
Other Features
LinearReader doesn't just replace Minecraft's file format and compression algorithm, it also includes a bunch of other features, such as:
- A backup system: LinearReader can automatically create backups of region files, which can be used if need be.
- A cache system: A configurable number of recently used region files remain cached in memory, reducing disk reads and decompression.
- A chunk pruning system: LinearReader can search for empty, worthless chunks that can safely be deleted. Strict rules are in place to ensure that only truly worthless chunks are pruned.
- An adaptive runtime policy: LinearReader can tweak certain settings to keep the game running smooth.
Made with Servers in Mind
Being a server-side mod, LinearReader tries to be as helpful and informative for server admins as possible. There are commands, such as benchmark and health, for seeing benchmarks and internal metrics, and a config file so that settings can be tailored to fit the server.
(LinearReader works on singleplayer too, and players in singleplayer have access to all the same features that server admins can access.)
Modded Servers
LinearReader strives to be compatible with as many mods as possible. Most mods will just work, but any mods that change part of Minecraft's storage system or require reading files on disk will likely not work. Mods that read chunk data from RAM will likely work.
A list of compatible/incompatible mods can be found in the wiki.
If you find a mod incompatibility, please create an issue.
Installation and Uninstallation
To install, just download LinearReader off of CurseForge or Modrinth, drop the .jar file in the mods folder, and you're all set. LinearReader will handle everything from there.
To uninstall, run the command /linearreader export-mca start to convert your world's .linear files back to .mca, replace your .linear region files with the fresh .mca files, and remove LinearReader.
Data Safety
It is recommended to create a backup of your world before installing LinearReader, as LinearReader changes much about Minecraft's internal storage engine and any storage-related bugs could potentially corrupt your world. So please, make backups of your world.
Where to Learn More
This README does not provide a full, in depth explanation of all of LinearReader's features. I highly encourage reading the wiki to gain a full understanding of all LinearReader has to offer.
Development Status
I intend for version 1.3.0 to be the last version of LinearReader.
I no longer plan to add to LinearReader anymore. However, I do plan to keep LinearReader up to date with the latest Minecraft release for the near future.
I will still try to respond to GitHub issues, and hotfixes may happen if need be, but my intention is for serious development of LinearReader (by me) to cease after releasing version 1.3.0.
AI Disclaimer
AI was used to code this mod. Everything is manually tested before a new release. If you run into any issues at all please report them on GitHub and I will try to resolve them as fast as possible.
For more information regarding the use of AI in this mod, please refer to AI_USAGE.md.
Project description from CurseForge.
Pick your setup
LinearReader by Minecraft version and loader
Choose the version and loader you play, then open the matching release.
26.2
3 loader builds26.1.2
3 loader builds26.1.1
3 loader builds26.1
3 loader builds1.21.11
3 loader builds1.21.10
3 loader builds1.21.9
3 loader builds1.21.8
3 loader builds1.21.7
3 loader builds1.21.6
3 loader builds1.21.5
3 loader builds1.21.4
3 loader buildsShowing the newest 12 of 23 game versions. Older files are in the list below.
Check the dependencies, then try the file in a copied instance before changing a world you care about.
Recent files
LinearReader versions and loaders
linearreader-1.3.0 (fabric 26.1-26.2)
linearreader-1.3.0-fabric-26.1-26.2.jar
13 Aug 2026
linearreader-1.2.1 (fabric 26.1-26.2)
linearreader-1.2.1-fabric-26.1-26.2.jar
12 Jul 2026
linearreader-1.2.0.1 (fabric 26.1-26.2)
linearreader-1.2.0.1-fabric-26.1-26.2.jar
17 Jun 2026
1.2.0.1
linearreader-1.2.0.1-fabric-26.1-26.1.2.jar
14 Jun 2026
Looking for an older file? The official CurseForge project page is in Resources.