Extends the normal server view distance without sacrificing server performance
BetterView

Description
BetterView is a high-performance Paper plugin for Minecraft servers. It extends the normal view distance without sacrificing server performance using asynchronous player processing, direct chunk reading from disk, and caching of chunk data.
Features
- Asynchronous fast player ticking on networking threads
- Reads chunks directly from disk without loading them
- Optimized chunk state tracking and chunk iteration
- Configurable chunk data caching for fast access
- Configurable limitations for chunk sending and chunk generation
- Per-dimension configuration options
Example: Loading speed for a view distance of 127 chunks
The screenshot below was taken at 0 2250 0
in the end dimension with a view distance of 127 chunks
(with fog disabled). On an AMD Ryzen 7 5800X, all visible chunks were transmitted to the client in about
12 seconds after having joined the server with a cold cache and in about 9 seconds with a warm cache.

Supported Software
Minecraft Version | Paper |
---|---|
1.21.5 | ✅ |
1.21.4 | ✅ |
1.21.3 | ✅ |
1.21.1 | ✅ |
Usage
Place the jar file in your plugins
directory and restart your server. By default, BetterView will configure a
view distance of 32 chunks for each dimension.
Configuration
On the first start, this plugin will automatically create a configuration file. It will be created at
plugins/BetterView/config.yml
. In there, you are able to configure the following options:
config-version
: Don't touch thisintegrated-server-render-distance
: Irrelevant, this allows replacing the render distance of the integrated server as BetterView would otherwise have no effect (default:-1
, disabled)global
:enabled
: Whether to enable or disable the entire plugin (default:true
)chunk-generation-limit
: How many new chunks can be generated globally in one tick (default:3
)chunk-send-limit
: The maximum amount of chunks sent to a player in a tick (default:3
)
dimensions
:<dimension>
(e.g.minecraft:overworld
):enabled
: Whether to enable or disable the plugin for this dimension (default:true
)chunk-generation-limit
: How many new chunks can be generated for this level in one tick (default:2
)chunk-queue-size
: How many chunks can be queued per player at once (default:16
)view-distance
: The maximum extended view distance for this dimension (default:32
)cache-duration
: The cache duration for how long extended chunks should be kept in memory (default:PT5M
, 5 minutes)
Feel free to play around with the chunk generations and chunk sending limits for an optimal experience on your server setup.
Make sure to adjust the cache duration based on what you use your server for; for e.g. static lobby servers, you can use a longer cache duration than for dynamic SMP servers. If the cache duration is too high, chunks will display outdated content after e.g. a rejoin.
Building
- Clone the project (
git clone https://github.com/MinceraftMC/BetterView.git
) - Go to the cloned directory (
cd BetterView
) - Build the jar files (
./gradlew build
on Linux/MacOS, justgradlew build
on Windows)
The jar files can be found in the build
→ libs
directory.
Contributing
If you want to contribute to BetterView, feel free to fork the repository and create a pull request. Please make sure to follow the code style and conventions used in the project. If you have any questions or need help, feel free to ask in our Discord.
You can test your changes by running ./gradlew :paper:runServer
. This will start a local server with the
compiled plugin automatically installed, ready for debugging in your IDE.