Lodehost logoLodehost

Performance and fixes

View distance vs simulation distance: what each one costs

Two lines in server.properties decide more about how smooth a server feels than almost anything else, and they sound so alike that people change the wrong one. One sets how far players can see. The other sets how far from a player the world is actually alive. They cost very different amounts, and farms only care about one of them.

5 min read

Two rings around a player: a wide ring of visible terrain and a smaller ring where the world is simulated
View distance is how far players see. Simulation distance is how far the world keeps moving.

Two distances, two different jobs

SettingWhat it controlsDefaultRange
view-distanceHow many chunks of terrain the server sends to each player103 to 32
simulation-distanceHow far from a player mobs move and spawn, crops grow, fires spread and redstone runs103 to 32
entity-broadcast-range-percentageHow far away players still receive mobs, items and other entities, as a percentage of the normal range10010 to 1000

Both distances count in chunks from the chunk a player stands in. A view distance of 10 means 10 chunks in every direction, so an area 21 chunks wide, or 336 blocks. Beyond the simulation distance the terrain can still be visible, but nothing in it happens: a cow stands still in mid step and wheat does not grow.

Players have a render distance setting of their own. They see the lower of the two: someone who sets 24 chunks on a server with a view distance of 10 still sees 10.

View distance and simulation distance around a Minecraft player
View distance controls the area sent to the client; simulation distance controls nearby active simulation. The zones are schematic, not exact boundaries for every game mechanic. View larger.

What players notice when you change them

  • Lower view distance: the fog starts closer and far-off mountains pop in later while flying. Building and farming feel the same.
  • Lower simulation distance: mobs in the distance freeze until you walk closer, farms stop sooner when you leave, and crops on the far side of a big base grow only while someone is near.
  • Lower entity broadcast range: mobs and dropped items appear later as you approach. It saves bandwidth and client effort, and at 70 percent most players never notice.

Why a few steps cost so much

The work grows with the area, and the area grows with the square of the distance. A view distance of 16 covers an area 33 chunks wide instead of 21, which is about two and a half times as much terrain for every player who stands somewhere else. The same happens with simulation distance, where the price is paid on every tick instead of once while loading.

DistanceWidth in chunksWidth in blocksArea compared to 10
613208about 0.4 times
817272about 0.65 times
10213361
1225400about 1.4 times
1633528about 2.5 times
32651,040about 9.6 times

That is why simulation distance is the one to be careful with. Ticking a chunk means running its mobs, redstone and block updates twenty times per second. Sending a chunk mostly costs loading it and the network traffic, and then it sits there quietly.

The three profiles in our panel

The Settings tab has a Performance profile card that fills in a handful of these values at once. Nothing is saved until you check the form and press save, so it is safe to click around.

ProfileView distanceSimulation distanceEntity broadcast rangeSync chunk writes
Safe6470%on
Balanced108100%off
Performance1410120%off

Sync chunk writes on means every chunk save waits until it is on disk. That is slower, but it loses less if the server is cut off in the middle of saving.

Next to the profiles the panel names a sensible ceiling for the view distance of your plan: 8 chunks below 4 GB of memory, 10 chunks from 4 GB and 14 chunks from 8 GB. It is a ceiling, not a target. A busy server with players spread over a large map does better below it.

Farms, AFK spots and simulation distance

A farm only works while its chunks are simulated, and that means a player has to be within the simulation distance. With a simulation distance of 4, a farm more than 4 chunks, or roughly 64 blocks, from the AFK spot stands still. Mob farms add their own rule on top: monsters spawn at least 24 blocks away from a player and disappear beyond 128 blocks.

  • Measure the distance from the AFK spot to the far edge of the farm, divide by 16 and round up. The simulation distance has to be at least that number.
  • Put the AFK spot in the middle of what should keep running, not at one end.
  • Since 1.21.2 a vanilla server stops ticking 60 seconds after the last player leaves, set by pause-when-empty-seconds. Farms do not run on an empty server unless you change that.

Find the right values for your server

  1. Start from Balanced

    View distance 10 and simulation distance 8 suit most survival servers. Save and restart so the values take effect.

  2. Measure a normal evening

    With players online, run spark tps in the console. Ticks well under 50 milliseconds leave room to spare; ticks close to 50 mean you are at the limit.

  3. Change one value by one or two steps

    Raise the view distance when there is room, lower the simulation distance when there is not. Change one thing per evening, or you will not know which change did what.

  4. Keep simulation at or below view distance

    Players cannot see the world beyond their view distance anyway, so a simulation distance above it mostly costs ticks without anyone noticing.

On Paper and Spigot, spigot.yml can set both distances per world, where the word default means the value from server.properties. A small view distance in the Nether and a larger one in the overworld is a common split. The spark guide shows how to read tick times properly, and generating terrain ahead of time takes the loading cost out of exploring.

Written and checked by the Lodehost team, last reviewed on 13 September 2026.

FAQ

View and simulation distance questions

What is a good view distance for a Minecraft server?

For most survival servers 8 to 10 chunks. With 8 GB of memory or more and players who stay close together, 12 to 14 works well. Our panel shows the ceiling for your plan next to the performance profiles.

Does simulation distance affect farms?

Yes, directly. A farm only runs while a player is within the simulation distance of it. Lower that distance and farms that used to work from your AFK spot can stop.

Why do players see less far than their render distance setting?

Because the server decides how much terrain it sends. A player sees the lower of their own render distance and the server's view-distance.

Should simulation distance be lower than view distance?

Usually, yes. Distant terrain can look nice without anything in it ticking, and the simulation distance is the one that costs work on every tick. A gap of two chunks is a common choice.

Do I need to restart after changing the distances?

Changes in server.properties are read when the server starts, so restart once after saving. Tell players first, because a restart disconnects everyone for about a minute.

Settings you can change without opening a file.

Every plan has the performance profiles and a view distance advice for its own memory, right in the Settings tab.

Compare the plans