The Paper settings worth changing, and the ones that are not

Performance & Lag Reviewed September 6, 2026 2 min read

Paper ships with sensible defaults. A handful of them are conservative for a busy server, and a much larger handful are fine exactly as they are — which is why copying somebody's «ultimate optimised config» usually changes gameplay more than it changes TPS.

The ones that earn their keep

SettingFileWhat it does
entity-activation-rangespigot.ymlHow close a player must be for an entity to tick. Lowering it is the single biggest win on a server with many mobs.
merge-radiusspigot.ymlHow aggressively dropped items and experience stack together. Fewer entities means fewer things to tick.
disable-move-eventpaper-world-defaults.ymlStops hoppers firing an event on every item movement. Safe unless a plugin depends on that event.
max-auto-save-chunks-per-tickpaper-world-defaults.ymlSpreads the world save over more ticks instead of one long freeze.
Changing spawn limits is a gameplay decision, not a tuning knob

Cutting spawn-limits in bukkit.yml reduces load because fewer mobs exist. It also means mob farms stop producing and caves feel empty. That may be the right call for your server — but make it deliberately, not because a config pack set it to a third of default.

How to change any of them without guessing

  1. Measure first

    /spark profiler start, play normally for five minutes, then stop it. You now know what is actually expensive on your server rather than on somebody else's.

  2. Change one value

    One value, then a restart, then the same measurement again. Two changes at once means you never learn which one did anything.

  3. Write down what you changed and why

    A comment in the file, or a note. In four months you will be looking at a value you do not recognise and wondering whether it was deliberate.

The two biggest wins are usually not in a config file

A view distance that matches how people actually play, and removing one badly-behaved plugin, beat every setting on this page combined. Config tuning is what you do after those, not instead of them.

How to confirm it worked

TPS holds at 20 with the same player count, and a fresh spark report shows the entity or hopper time you were targeting has dropped.