Servers · Game hosting
Game servers are limited by one core, not by how many you buy.
The industry prices game hosting by core count because core count scales a price list. What decides whether your world stutters is the speed of a single thread and whether you have enough memory — which usually means the right machine costs less than the one you were about to buy.
What actually limits it
Three constraints, in the order they bite.
Not CPU, RAM and disk — that ordering is exactly what makes people buy the wrong machine. These are the ones that decide whether players notice.
The tick
Single-thread speed
A game server simulates the world in ticks — a fixed number per second, each one a pass over every entity, block update and player action. That loop is overwhelmingly a single thread. When it cannot finish inside its budget the tick rate drops, and that is what players feel as rubber-banding and delayed hits. A faster core raises the ceiling. A second core does not, because the loop cannot run on two at once.
Buy for: Clock speed and cache, not core count.
The ceiling
Memory
Memory decides how much world and how many players fit before the machine starts swapping — and a server that swaps is a server that has already stopped being playable. Modded and plugin-heavy setups multiply this: the mods are resident whether anyone is playing or not. This is the number worth being generous with, because running out of it is abrupt rather than gradual.
Buy for: Enough that you are not near the edge, then stop.
The felt experience
The network
Once the tick is healthy, everything a player calls lag is the network. Distance sets the floor on round-trip time and no hardware fixes it, which makes the region a more important decision than the plan. A modest machine near your players beats a large one on the other side of an ocean, every time.
Buy for: The region your players are in, before anything else.
The expensive mistake
The machine most people ask us for is bigger than the one they need.
We would rather lose the difference than sell it. Here is the shape of the decision, including the part that argues against our own expensive hardware.
A server for friends
One world, a small group, no heavy modpack. This is bound by a single thread and a few gigabytes. The High frequency line exists for exactly this shape of work: faster physical cores rather than more of them. Anything larger is money spent on cores that the simulation loop cannot use.
A community server that must not stutter
Here the argument for pinned cores is real: a shared core is quick in bursts and unpredictable under constant load, and a game server is constant load. What you are buying is not speed but the absence of a neighbour.
Many worlds, or one very large one
This is where metal earns it — genuinely unshared hardware, and in DS-5’s case extra L3 cache stacked on the cores for working sets that nearly fit in it. It is the most expensive answer on this page and the right one least often.
The other side
When the extra cores do earn their money.
The argument above is not that big machines are pointless. It is that core count answers a different question from the one most people are asking.
- Several worlds on one machine
- Each server process gets its own core budget. Ten instances is the case where core count is genuinely the variable — not one instance with ten times the players.
- Modpacks with heavy world generation
- Generation and chunk work can be parallel even when the tick is not, and it is the part that spikes when a player walks somewhere new.
- A community that is actually large
- Above a certain population the working set stops fitting in cache and memory bandwidth starts to matter. That is the point where a machine like DS-5, with extra L3 stacked on its cores, does something a faster clock alone cannot.
Region beats hardware. Before choosing between any two plans on this page, choose where the machine sits. A modest server near your players will feel better than a large one across an ocean, because distance sets a floor on round-trip time that no amount of hardware removes. Start from the region list.
Questions
What people ask before they buy one.
Do I need a dedicated server for a game server?
Why does more RAM not make it run faster?
Will more cores raise the tick rate?
Which of your machines has the most cache?
Do you protect against DDoS attacks?
How do I know which plan is right before I pay for a month?
Is bandwidth going to be a problem?
Keep reading
The pages this one keeps pointing at.
Other workloads