Back to mods
LinearReader project artwork

CurseForge · Minecraft mod

LinearReader

Make Minecraft worlds take up less space.

Choose a version Pick your version below, then grab the matching file.

Quick answer

Which LinearReader release matches 1.21.7?

Updated today
Best match for your filters linearreader-1.3.0 (neoforge 1.21.5-1.21.7)
Game version 1.21.5, 1.21.6, 1.21.7
Loader NeoForge

linearreader-1.3.0 (neoforge 1.21.5-1.21.7) targets 1.21.5, 1.21.6, 1.21.7 with NeoForge. The project page does not say whether this file belongs on the client, dedicated server, or both. No extra mods listed for this file.

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.

Client Source doesn’t say
Dedicated server Source doesn’t say
Loader for this release NeoForge
Required install it here Optional supported, not mandatory Not supported do not install here Source doesn’t say do not assume

The source does not explicitly classify this release as client-only or server-only.

What else does linearreader-1.3.0 (neoforge 1.21.5-1.21.7) need?

linearreader-1.3.0 (neoforge 1.21.5-1.21.7) on 1.21.7. Every mod below is checked against that same setup.

No extra mods listed for this file

This file does not list any required mods. Do not add a library just because a different file uses it.

This file does not list any required or optional mods.

Before you install it

Add LinearReader without breaking your instance.

Built for linearreader-1.3.0 (neoforge 1.21.5-1.21.7) on 1.21.7. Pick another file and the loader, install side or required mods may change.

  1. 01

    Stick to this file

    Use linearreader-1.3.0 (neoforge 1.21.5-1.21.7). It targets 1.21.5, 1.21.6, 1.21.7 with NeoForge; another release may have different loader, side or dependency requirements.

  2. 02

    Bring the mods it needs

    This file does not list any required mods. Do not add a library just because a different file uses it.

  3. 03

    Put it on the correct side

    The project page does not say whether this file belongs on the client, dedicated server, or both.

  4. 04

    Pick the file you checked

    Use the “Get this file” button beside linearreader-1.3.0 (neoforge 1.21.5-1.21.7). It opens that exact file at the source.

About this project

What does LinearReader add?

LinearReader

CurseForge Downloads Modrinth Downloads

Minecraft Range Loaders Server-side

Compression Wiki

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.

67 available setups

Showing 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

9 of 78 releases match
Clear filters

Looking for an older file? The official CurseForge project page is in Resources.