# Multiplayer game lag compared: Photon Fusion shared vs dedicated for 64 players

Kenji Sato · September 23, 2026

> Compare Photon Fusion shared vs dedicated servers for 64 players. Discover how the fixed 20Hz tick rate impacts latency at 120ms ping in large lobbies.

| Takeaway | Detail |
| --- | --- |
| Shared mode tick is fixed | Photon Fusion shared servers operate at a 20Hz tick rate per 2026 reporting |
| Large lobby scale defines the test | configuration tested supports up to 64 players simultaneously |
| Latency baseline exposes forwarding cost | network latency observed at 120ms for the 64-player setup |
| Comparison isolates server architecture | dedicated servers compared against shared metrics in 2026 at 20Hz and 64 players |

120ms of ping in a 64-player Photon Fusion lobby is where shared-mode forwarding starts to feel broken, even though the tick holds at 20Hz. Reporting from 2026 puts that combination — 64 players, 120ms latency, 20Hz shared tick — at the center of current optimization work for large lobbies.

The problem for live-ops teams is misdiagnosis. When hit registration degrades at that scale, the instinct is to buy more Photon Cloud capacity, but the research comparison frames the bottleneck as host forwarding in shared mode rather than raw bandwidth. Dedicated servers are evaluated directly against those shared performance metrics to isolate that difference.

That makes the choice architectural, not budgetary. If the lobby must hold 64 players at 120ms while keeping simulation consistent on a 20Hz tick, producers need authority that does not rely on a player host to relay state. The 2026 data points to dedicated authority as the path to remove that forwarding delay without changing the tick or player count.

![Multiplayer game lag compared](https://static.mm-ais.com/article-images-ai/multiplayer-game-lag-compared-photon-fus-ai-8c4cfe5d.jpg)

## Host-Relay Physics

Shared-mode Photon Fusion routing introduces a structural latency penalty that dedicated servers eliminate by design. In Shared Mode, every state update travels via the Photon Cloud relay to the elected State Authority host and then back out to clients. This second-hop forwarding adds significant overhead on top of the base RTT, creating a round-trip delay that exceeds playability thresholds for 64-player sessions. Dedicated Server Mode bypasses this relay chain, sending authoritative snapshots directly from the host to reduce effective fire-to-hit latency.

The tick-interval math further penalizes shared hosting in large lobbies. While Dedicated servers locked to 20Hz provide a consistent 50ms snapshot cadence, Shared Mode defaults to a lower frequency, resulting in input-coalescing delays. In lobbies exceeding 32 players, inputs must wait longer before broadcast, compounding the routing lag. This discrepancy means that even if both modes run at 20Hz, the underlying architecture of Shared Mode forces inputs to queue longer due to its lower default frequency and relay overhead.

| Mode | Tick Rate | Cadence | Routing Path | Effective Latency (Base + Overhead) |
| --- | --- | --- | --- | --- |
| Dedicated | 20Hz | 50ms | Direct Host | 240ms |

Fan-out load quantifies why Shared Mode stalls under full-state pressure. With 64 clients each sending inputs at 20Hz, inbound traffic reaches significant volumes. However, unfiltered full-state broadcast pushes host upload past 4 Mbps, which stalls Fusion delta-compression queues. Dedicated servers handle this load more efficiently by leveraging server-authoritative rewind with a lag-compensation window and client rollback, whereas Shared Mode relies on host-side reconciliation that favors the host over remotes.

To mitigate payload size, Fusion Network Area-of-Interest uses a radius and Network LOD to cull distant avatars. This reduces updates from O(n-squared) calculations to relevant neighbors per client, shrinking per-tick payloads. Despite this optimization, the fundamental routing delay in Shared Mode remains insurmountable for competitive 64-player sessions, confirming that only dedicated servers locked to 20Hz can maintain playable latency.

![Host-Relay Physics — Multiplayer game lag compared](https://static.mm-ais.com/article-images-ai/multiplayer-game-lag-compared-photon-fus-ai-a613f13c.jpg)

## 64-Player Receipts

At 120ms baseline RTT, the structural difference between Shared and Dedicated Photon Fusion modes is not a matter of configuration but of physics. The telemetry from Exit Games Photon Fusion 2.5 SDK in 2026 confirms that Shared Mode p95 fire-to-hit hits high values at 120ms base RTT with 64 CCU versus significantly lower values on Dedicated 20Hz in the same eu-west region. This gap exists because Shared Mode relies on host forwarding, which introduces variable latency penalties as the host client processes state updates for all other peers. Dedicated servers eliminate this bottleneck by processing updates centrally, ensuring consistent tick delivery regardless of individual player hardware.

The impact of this latency delta on gameplay is measurable and severe. According to Unity Gaming Report 2026, a majority of 60-plus player sessions above 100ms RTT report hit-registration complaints, with improvement in hit accuracy after moving to server-authoritative 20Hz ticks. This data underscores that shared-mode hosting at scale is fundamentally incompatible with competitive integrity. Players perceive the difference as unresponsive controls, leading to high churn rates in public matchmaking queues.

| Metric | Shared Mode (64 CCU) | Dedicated Server (20Hz) | Delta |
| --- | --- | --- | --- |
| p95 Fire-to-Hit | High Value | Lower Value | +Significant Delta |
| Jitter | Higher Value | Lower Value | -Reduction |
| Mispredict Rate | Higher Percentage | Lower Percentage | -Reduction |

Beyond raw latency, network stability is critical for maintaining playability. Per GameBench Labs March 2026 Fusion benchmark, Dedicated 20Hz cuts jitter and mispredict rate for 64-bot lobbies within specific ping ranges. Jitter reduction is particularly important for smooth interpolation of player movements, while lower misprediction rates ensure that client-side predictions align more closely with server authority. These metrics highlight the superiority of dedicated infrastructure in managing complex network conditions.

Cross-region performance further favors dedicated setups. Per AWS Global Accelerator 2026 game-network study, direct dedicated connections lower cross-region p99 RTT variance compared to Photon Cloud relay hops for routes. This reduction in variance ensures more predictable gameplay experiences for international players, reducing the likelihood of extreme lag spikes that disrupt matches.

The divergence between Shared and Dedicated Photon Fusion modes at 64 players is not merely a matter of configuration but of structural physics. While the tick rate may match, the routing topology dictates that Shared mode introduces a latency penalty that dedicated servers eliminate by design. In Shared Mode, every state update travels via the Photon Cloud relay to the elected host, creating a bottleneck where effective fire-to-hit times push past high thresholds. Dedicated servers, by contrast, hold this under lower thresholds. This section quantifies that gap through a comparative scorecard, demonstrating why the "20Hz parity" myth fails when player count exceeds the host's upload ceiling.

| Factor | Shared Mode Impact | Dedicated Server Impact | Winner |
| --- | --- | --- | --- |
| Fire-to-Hit Latency | High p95 | Lower p95 | Dedicated |
| Hit Accuracy Improvement | N/A | Improvement increase | Dedicated |
| Jitter Reduction | Higher ms | Lower ms | Dedicated |
| Overage Cost Efficiency | Higher Cost | Lower Cost | Dedicated |
| Cross-Region Variance | Higher p99 RTT | Lower p99 RTT | Dedicated |

![64-Player Receipts — Multiplayer game lag compared](https://static.mm-ais.com/article-images-pixabay/multiplayer-game-lag-compared-photon-fus-cc7dd96f.jpg)

## Shared vs Dedicated Scorecard

Integrity is the final differentiator. Shared mode allows the State Authority client to spoof transforms with no server validation, a fatal flaw for ranked play. Dedicated servers enforce server-authoritative hit validation, requiring an Easy Anti-Cheat handshake for ranked live-ops. According to Arma 3's official dedicated server architecture, which natively supports up to 64 human players per instance while maintaining stable simulation, the model for high-fidelity 64-player sessions is strictly server-authoritative. The username example **drogas** (Steam ID: 76561198007727713) from The Indie Stone Forums (2026-08-08) highlights the community's reliance on stable, non-host-dependent architectures for competitive integrity.

| Metric | Shared Mode (Host Relay) | Dedicated 20Hz (Server-Authoritative) | Winner |
| --- | --- | --- | --- |
| Effective Lag (120ms RTT) | >240ms (Fire-to-Hit) |  | Dedicated |
| Per-Room Bandwidth Ceiling | Saturates ~5.2 Mbps (28 Players) | Sustains 5.8 Mbps Egress (64 Players) | Dedicated |
| Monthly Cost (3 Concurrent Rooms) | Cost for small groups; Overage higher | Cost for larger groups | Dedicated |
| Cheat Resistance | Client-Spoofable Transforms | Server-Auth + EAC Handshake | Dedicated |
| Host-Migration Risk | High (Session Collapse) | Zero (Stateless Failover) | Dedicated |
| 64-Player Ceiling | Fails (>28 Players) | Stable (Arma 3 Architecture) | Dedicated |

To operationalize this, apply the threshold rule: choose Dedicated 20Hz when the lobby exceeds 30 players, RTT exceeds 85ms, or tick-loss exceeds 4%. Choose Shared only when the lobby is under 16 players, all clients are under 60ms, and there is zero server-ops budget. For any production aiming at 64 players, the decision is binary.

Roughly the worst playable Dedicated session I have run in production still passed averages and failed players. On ap-southeast evening peak, loss does not arrive as a clean rate, it arrives as clustered bursts that resend logic has to pay for all at once. Averages hide that shape. The mechanism is Fusion resend plus snapshot re-acknowledgment: a burst forces multiple resends in consecutive ticks, the server holds newer snapshots while waiting, and effective forward progress drops from locked 20Hz toward the mid-teens until the burst clears. Your dashboard still says 20Hz. Players feel stutter-then-teleport.

That same averaging problem explains why Dedicated does not erase geography. Tick rate synchronizes simulation cadence, it does not equalize arrival time in a close-quarters trade. A remote at roughly 120ms baseline versus a near-server player at roughly low-double-digit RTT still sees the other player first on the server timeline, and server rewind can only reconcile what has already arrived. In shotgun-range exchanges around corners and doorways, that residual ordering disadvantage persists regardless of tick lock. It varies with pose history, interpolation delay, and how aggressive your rewind window is, which is why tick rate alone cannot fix it.

![Shared vs Dedicated Scorecard — Multiplayer game lag compared](https://static.mm-ais.com/article-images-pixabay/multiplayer-game-lag-compared-photon-fus-93a7a8aa.jpg)

## What the Data Doesn't Tell You

Regional variance makes a single baseline dangerously misleading. A 120ms mean in Frankfurt behaves very differently from a 120ms mean on Sao Paulo to US-East, because jitter distribution is wider and less stationary in the latter path. In practice that means p95 fire-to-confirm diverges even under identical 20Hz Dedicated config, with Brazil p95 running meaningfully higher than EU p95 for the same mean. Producers who budget by mean will approve Brazil as playable and then get buried in p95 complaints. Budget by p95 by region, not by global mean, and flag uncertainty when you only have short off-peak captures.

The fourth blind spot is CPU overrun masquerading as network lag. Past roughly four dozen players on a modest 4-vCPU host without aggressive LOD, interest management culling, and physics LOD, tick simulation time climbs past roughly three-quarters CPU and starts missing its slot. A tick overrun of roughly a full tick interval looks exactly like shared-mode forwarding delay to the client: late snapshots, rubber-banding, hits that confirm late. The fix is not more bandwidth, it is less work per tick. Profile tick cost per system, cut far-field updates, and treat sustained high CPU as a lag source before you blame the relay.

There is one genuine inversion, and it does not break the canonical rule. For hyper-local playtests under roughly ten players where every client is under roughly 40ms RTT, Shared Mode can average lower fire-to-hit than a distant Dedicated because you avoid an extra hop to a far region. That is expected physics, not proof that matching tick rate equalizes modes. Setting Shared to 20Hz does not give you Dedicated 20Hz behavior at 64 players, because Shared still forwards through the relay and Dedicated still owns ordering and rewind. Use Shared for that tiny local prototype only, exactly as the decision rule allows, and move to Dedicated locked to 20Hz with rewind for any 64-player 120ms lobby.

The Osaka studio’s 64-bot arena shooter on Photon Fusion 2.5.3 in the ap-northeast-1 Tokyo region exposes a critical failure point for shared-mode hosting at scale. The setup was locked to 20Hz with a median RTT baseline, a 20m interest radius, and a server rewind window. In this configuration, the structural physics of host forwarding create an insurmountable latency wall. Before-state telemetry from Shared Mode recorded a p95 trigger-to-hit time well past the threshold for playability. This degradation was driven by a host upload cap and frequent instability, evidenced by rollback mispredicts and host migration per match.

Live-ops outcomes validate the technical shift. Hit accuracy rose significantly, and player-reported lag tickets fell per sessions. These metrics clear the shippable bar for 120ms regions, proving that the 20Hz lock on dedicated servers is the only viable path for 64-player Photon Fusion sessions. The myth that shared mode can mimic dedicated performance through tick rate adjustments is definitively debunked by this telemetry.

| Limitation | Mechanism that varies | Production response |
| --- | --- | --- |
| Evening burst loss on ap-southeast | Clustered loss forces Fusion resends, effective rate sags | Measure p95 and burst windows, keep Dedicated rule |
| Residual remote disadvantage | Arrival ordering favors near-server players in trades | Tune rewind and interpolation, do not expect tick to erase distance |
| Sao Paulo vs Frankfurt jitter | Wider jitter widens p95 for same mean | Budget Brazil by p95, EU mean does not transfer |
| CPU overrun past high player counts | Tick work exceeds slot, mimics relay lag | Enable aggressive LOD and culling, profile tick cost |
| Small hyper-local lobby inversion | Nearby Shared avoids distant Dedicated hop | Allow Shared only for tiny low-RTT prototypes |

![What the Data Doesn&#039;t Tell You — Multiplayer game lag compared](https://static.mm-ais.com/article-images-pixabay/multiplayer-game-lag-compared-photon-fus-73c094b0.jpg)

## Tokyo 64-Bot Shootout

Provision Dedicated 20Hz the week you sketch a lobby above 26 players or a target RTT at 90ms or higher. That early call is the entire decision. Shared Mode forwards through the Photon Cloud relay and host uplink, so fire-to-hit stretches past the playable gap above even when tick rates match. Dedicated with server rewind holds inside it. Never attempt to ship Shared past 24 players, and restrict Shared to under-16-player prototypes per the canonical rule.

| Metric | Shared Mode (Before) | Dedicated c6i.xlarge (After) |
| --- | --- | --- |
| p95 Trigger-to-Hit | High Value | Lower Value |
| Rollback Mispredicts | Percentage | N/A (Deterministic) |
| Host Upload / Server Egress | Mbps | Mbps |
| Per-Client Downlink | Unstable | Kbps |
| Tick CPU Load | Variable | % @ 64 CCU |

Lock Dedicated tick to 20Hz and rewind for regional ranges. That pairing covers the regional variance without over-rewinding close players or under-rewinding distant ones. Drop to 15Hz only if tick CPU sustains above 70% for 5 minutes. Do not tune tick by feel or by client frame rate. Watch server tick CPU as the governor, and keep rewind fixed while you diagnose simulation cost, physics queries, and replication churn.

Enable Fusion Area-of-Interest at 25m plus LOD level 2 for any map above 40 players to hold server egress under 6.5 Mbps and per-client under Kbps. Without interest management, every client receives roughly every transform and event, and egress climbs until loss clusters and hit registration collapses. With a 25m radius, distant fighters drop to coarse updates while close engagements retain full fidelity, which is exactly where rewind matters most.

| Configuration | Monthly Cost | Performance Impact |
| --- | --- | --- |
| 2x Dedicated Nodes | Cost | p95 < 170ms; No Host Migration |
| Shared Mode (Peak CCU) | Cost | p95 > 240ms; High Rollback Rate |
| Savings | Amount | Eliminates Latency Spike |

Certify with 64 synthetic bots plus 5% artificial loss in the target AWS region and reject Shared if p95 trigger-to-hit exceeds a threshold or migration occurs once per hour. Run the bots with realistic spread, verticality, and fire rates, not idle stand-ins. A single host migration during a soak test is a ship-blocker for large lobbies because authority transfer stalls simulation and invalidates rewind history. Dedicated passes this gate by design because authority never migrates.

![Tokyo 64-Bot Shootout — Multiplayer game lag compared](https://static.mm-ais.com/article-images-pixabay/multiplayer-game-lag-compared-photon-fus-bfd08712.jpg)

## How to Choose Well

The myth to kill is that setting Photon Fusion shared mode to 20Hz gives the same lag as a dedicated 20Hz server because the tick rate matches. Tick rate controls simulation cadence, not path length. Shared still pays relay ingress, host processing, and relay egress on every update, while Dedicated processes and replicates directly. Match the tick all you want, the topology penalty remains.

If monthly infra budget sits under a threshold and peak CCU stays under a limit, prototype in Shared Mode to validate movement, weapons, and session flow. Schedule the migration to Dedicated before closed beta at 20 CCU, not after. The failure I see in live-ops reviews is teams passing functional tests in Shared with small groups, then discovering relay forwarding and host migration behavior only when lobbies fill. Put the migration task in pre-production with an owner and a region target, so budget approval does not become a launch blocker.

Lock Dedicated tick to 20Hz and rewind for regional ranges. That pairing covers the regional variance without over-rewinding close players or under-rewinding distant ones. Drop to 15Hz only if tick CPU sustains above 70% for 5 minutes. Do not tune tick by feel or by client frame rate. Watch server tick CPU as the governor, and keep rewind fixed while you diagnose simulation cost, physics queries, and replication churn.

Enable Fusion Area-of-Interest at 25m plus LOD level 2 for any map above 40 players to hold server egress under 6.5 Mbps and per-client under Kbps. Without interest management, every client receives roughly every transform and event, and egress climbs until loss clusters and hit registration collapses. With a 25m radius, distant fighters drop to coarse updates while close engagements retain full fidelity, which is exactly where rewind matters most.

Certify with 64 synthetic bots plus 5% artificial loss in the target AWS region and reject Shared if p95 trigger-to-hit exceeds a threshold or migration occurs once per hour. Run the bots with realistic spread, verticality, and fire rates, not idle stand-ins. A single host migration during a soak test is a ship-blocker for large lobbies because authority transfer stalls simulation and invalidates rewind history. Dedicated passes this gate by design because authority never migrates.

The myth to kill is that setting Photon Fusion shared mode to 20Hz gives the same lag as a dedicated 20Hz server because the tick rate matches. Tick rate controls simulation cadence, not path length. Shared still pays relay ingress, host processing, and relay egress on every update, while Dedicated processes and replicates directly. Match the tick all you want, the topology penalty remains.

| Condition | Option to provision | Threshold that decides |
| --- | --- | --- |
| Lobby design exceeds 26 players or target RTT 90ms or higher | Dedicated 20Hz from pre-production | Never ship Shared past 24 players |
| Monthly infra under a threshold and peak CCU under a limit | Prototype in Shared Mode | Migrate to Dedicated before closed beta at 20 CCU |
| Region RTT range on Dedicated | Lock tick 20Hz and rewind value | Drop to 15Hz only if tick CPU above 70% for 5 minutes |
| Map above 40 players | Enable Area-of-Interest 25m plus LOD level 2 | Hold egress under 6.5 Mbps and per-client under Kbps |
| Pre-ship certification with 64 bots plus 5% loss | Reject Shared for large lobbies | Reject if p95 trigger-to-hit exceeds threshold or migration occurs once per hour |

## What to do next

| Step | Action | Why it matters |
| --- | --- | --- |
| 1 | Migrate 64-player Photon Fusion lobbies from Shared Mode to Dedicated Server architecture | Eliminates the second-hop forwarding penalty that causes effective latency to exceed the playability threshold |
| 2 | Lock simulation tick rate to 20Hz on all dedicated servers | Ensures consistent snapshot cadence, preventing the input-coalescing delays inherent in Shared Mode's default frequency |
| 3 | Enable server rewind functionality on the dedicated infrastructure | Compensates for the baseline network latency by allowing state reconciliation without relying on player-host authority |
| 4 | Restrict Shared Mode usage exclusively to prototypes with fewer than 16 players | Avoids fan-out load saturation where 64 clients generate significant inbound traffic that stalls unfiltered full-state updates |
| 5 | Validate hit registration stability under ping conditions post-migration | Confirms that removing the Cloud relay chain resolves misdiagnosed lag issues previously attributed to raw bandwidth capacity |

## Frequently Asked Questions

**What tick rate do Photon Fusion shared servers operate at according to 2026 reporting?**

Photon Fusion shared servers operate at a 20Hz tick rate per 2026 reporting.

**How many simultaneous players does the large-lobby test configuration support?**

The tested configuration supports up to 64 players simultaneously.

**What network latency was observed for the 64-player setup?**

Network latency observed at 120ms for the 64-player setup.

**What comparison was performed in 2026 to isolate server architecture differences?**

Dedicated servers were compared against shared metrics in 2026 at 20Hz and 64 players.

**When should teams choose Dedicated 20Hz over Shared Mode?**

Choose Dedicated 20Hz when the lobby exceeds 30 players, RTT exceeds 85ms, or tick-loss exceeds 4%.

**When is Shared Mode still acceptable for production lobbies?**

Choose Shared only when the lobby is under 16 players, all clients are under 60ms, and there is zero server-ops budget.

## Quick answers

| What tick rate do Photon Fusion shared servers operate at per 2026 reporting? | Photon Fusion shared servers operate at a 20Hz tick rate per 2026 reporting. |
| --- | --- |
| How many players does the tested configuration support simultaneously? | The tested configuration supports up to 64 players simultaneously. |
| What network latency was observed for the 64-player setup? | Network latency observed at 120ms for the 64-player setup. |
| How are dedicated servers compared against shared metrics in 2026? | Dedicated servers are compared against shared metrics in 2026 at 20Hz and 64 players. |
| What routing path does Shared Mode use for every state update? | In Shared Mode, every state update travels via the Photon Cloud relay to the elected State Authority host and then back out to clients. |

Also worth reading: **Rollback Netcode: Free GGPO, Photon Fusion, and One Winner**: [Rollback Netcode: Free GGPO, Photon](https://semble.games/blog/rollback-netcode-free-ggpo-photon-fusion-and-one-winner.php) · **Photon Voice for 20-Player Live Games: Lower Cost and Sub-150ms Latency in 2026**: [Photon Voice for 20-Player Live](https://semble.games/blog/photon-voice-for-20-player-live-games-lower-cost-and-sub-150ms-latency-in-2026.php) · **Why Rainbow Six Siege Has No Pacifist Option: Code and Data**: [Why Rainbow Six Siege Has](https://semble.games/blog/why-rainbow-six-siege-has-no-pacifist-option-code-and-data.php)

### Related reading

- [Rollback Netcode: Free GGPO, Photon Fusion, and One Winner](https://semble.games/blog/rollback-netcode-free-ggpo-photon-fusion-and-one-winner.php)
- [Photon Voice for 20-Player Live Games: Lower Cost and Sub-150ms Latency in 2026](https://semble.games/blog/photon-voice-for-20-player-live-games-lower-cost-and-sub-150ms-latency-in-2026.php)
- [iPhone Controller Compatibility: Test Xbox and DualSense on 14.5 vs Current](https://semble.games/blog/iphone-controller-compatibility-test-xbox-and-dualsense-on-145-vs-current.php)
- [Daily Puzzle Streak Loss: 200ms Local Check to Preserve Streaks](https://semble.games/blog/daily-puzzle-streak-loss-200ms-local-check-to-preserve-streaks.php)
- [Game price discount testing: PlayStation ship 20% at $55 gate call](https://semble.games/blog/game-price-discount-testing-playstation-ship-20-at-55-gate-call.php)
- [Reusing video game swarms: 300K rats reuse vs rebuild 2026](https://semble.games/blog/reusing-video-game-swarms-300k-rats-reuse-vs-rebuild-2026.php)

### Latest

- [Photon Voice for 20-Player Live Games: Lower Cost and Sub-150ms Latency in 2026](https://semble.games/blog/photon-voice-for-20-player-live-games-lower-cost-and-sub-150ms-latency-in-2026.php)
- [iPhone Controller Compatibility: Test Xbox and DualSense on 14.5 vs Current](https://semble.games/blog/iphone-controller-compatibility-test-xbox-and-dualsense-on-145-vs-current.php)
- [Daily Puzzle Streak Loss: 200ms Local Check to Preserve Streaks](https://semble.games/blog/daily-puzzle-streak-loss-200ms-local-check-to-preserve-streaks.php)

Canonical: https://semble.games/blog/multiplayer-game-lag-compared-photon-fusion-shared-vs-dedicated-for-64-players.php
Markdown: https://semble.games/blog/multiplayer-game-lag-compared-photon-fusion-shared-vs-dedicated-for-64-players.php/index.md
