How Many Players Can My Server Actually Hold?

Slot counts are a billing unit, not a capacity measurement. What decides how many people your server holds is usually what those people are doing.

GameHostReviews Editorial · · Updated

Hosting plans are sold in slots, which implies that a slot is a unit of capacity. It is not. A slot is a unit of billing. The number in your config file has no idea what the machine underneath it can do.

What actually limits a server

For most games the binding constraint is single-thread CPU speed, because most game servers run their world simulation on one thread. Every entity, every block update, every physics calculation happens in a single loop, and when that loop cannot finish in its allotted time the server falls behind. That is the lag your players feel.

Memory is a floor, not a dial — enough is enough, and more does nothing. Disk matters for world loading and saving, and matters a great deal on servers with large or fast-changing worlds.

None of these scale neatly with player count.

Why players are not equal

Ten players standing in a town square are cheap. They share loaded chunks, their entities overlap, and the server simulates one area well.

Ten players scattered across the map are expensive. Each one pins their own region of the world in memory and keeps it ticking — mobs, growth, machinery, weather. The same ten people can cost three or four times as much depending only on where they stand.

This is why "how many slots do I need" has no clean answer, and why servers often run beautifully at 30 players and badly at 12.

The things that cost more than players

In roughly the order they surprise people:

  • View or simulation distance. This is the single biggest lever on many games and the first thing to reduce when a server struggles. It scales badly — the loaded area grows with the square of the radius.
  • Entities. Farms, dropped items, mob accumulation, vehicles. A single well-built automated farm can outweigh the entire player load.
  • Mods and plugins. A heavy modpack can multiply the per-tick cost by an order of magnitude. A pack's own recommended player count is a better guide than any host's slot tier.
  • World size. Large explored worlds cost memory and disk even when nobody is in most of it.
  • Redstone, machinery and automation. Constant tick-by-tick work that continues whether players are online or not.

A sane way to size a server

  1. Start from the game, not the plan. Find what the community running a similar server uses. A modded pack's own documentation is usually honest about hardware, because the pack authors get the complaints.
  2. Buy for your busiest realistic session, not your best-case fantasy. A server built for the forty people who joined the Discord will be idle and overpriced when the usual eight play.
  3. Watch the tick rate, not the player count. Nearly every game server exposes a tick or frame timing figure. That number falling is the actual symptom; player count is a guess at the cause.
  4. Expect to move once. Almost everyone underestimates the first time. Choosing a host that makes upgrading easy is worth more than getting the size right at the start.

Reading a hosting page honestly

"Up to 100 slots" describes the config file. "Unlimited slots" describes the billing model. Neither is a lie, and neither is a measurement.

What you want to find instead is the CPU model and whether the core is dedicated or shared. A shared core on a busy node will underperform a slower dedicated one, and no slot count on the page will tell you which you are getting. If the host does not publish it, ask — it is a fair question and the answer is informative either way.

Compare hosts for these games

Frequently asked questions

The setting is real; the capacity is not unlimited. "Unlimited slots" means the host does not cap the player count in your config — the machine still runs out of CPU or memory at some point. It is a fair offer as long as you read it as "we do not charge per player" rather than "this will hold any number of people".

Almost always because of what is loaded, not who is connected. Spread players across a large map and each one keeps their own area of the world simulating. Ten players in ten places can be far heavier than thirty players standing together.

Resources, nearly every time. Slots are a number in a config file. If your server struggles at its current player count, adding slots makes it struggle with more people watching.

Been through this yourself? Your review helps the next person.

Write a review