Questions tagged [scalability]
Scalability is the ability of a system, network, or process, to handle growing amounts of work in a graceful manner, or its ability to be enlarged to accommodate that growth. A scalable system can adopt to a growing demand (e.g. a growing number of users).
23 questions
0
votes
2
answers
228
views
How to compute XP thresholds when scaling changes for each level range?
I am developing mobile game and I am stuck on an issue regarding proper player stats scaling based on level.
As a parameters for the computation we have:
base XP value
multiple increment values (for ...
0
votes
0
answers
1k
views
What's the better approach, running multiple server-builds on one instance or running one server-build and managing matches in different rooms?
We are building a racing multiplayer game using Mirror and Unity and we've been able to successfully run the authoritative server on AWS-Gamelift and Playfab so far.
Both providers are with the ...
3
votes
1
answer
2k
views
Architecture for scaling a large 2D MMORPG world vs player load
I want to make 2D MMORPG in a post-apocalyptic world.
I would like to make the game world seamless and big, with big battles for the players. Something similar is in Eve Online (in 3D), but I do not ...
4
votes
0
answers
511
views
With this MMOG architecture, how can I avoid losing games when the server goes down?
I am fairly new to game designing and am trying to design game engine architecture for MMOG poker game. My major problem is scalability. Old Legacy code written in python runs everything on single ...
1
vote
2
answers
1k
views
2D open world MMORPG; big map memory problem [duplicate]
I am developing an 2d open world mmorpg game for learning purposes, and have a issue with big maps.
A year ago i developed 2d open world single player / co-op game. It saved map in chunks, and AI for ...
-1
votes
1
answer
202
views
Cloud Computing Middleware to Control for Add/Kill VMs + Sessions
I'm working with some people who have a prototype game in Unity and may need to scale it up to address a larger user base. The potential application has the following characteristics:
Sessions are ...
0
votes
1
answer
283
views
How well (or badly) does Minecraft SMP scale?
Has anyone tested and collected some data about how well does Minecraft SMP scale, with an increasing number of players (up to large amounts of players)?
I.e. the bottlenecks are:
mostly in the ...
2
votes
2
answers
2k
views
What is the most efficient way to convert to binary and back in C#?
I'm trying to write a general purpose socket server for a game I'm working on. I know I could very well use already built servers like SmartFox and Photon, but I wan't to go through the pain of ...
9
votes
2
answers
4k
views
MMO techniques, algorithms and resources for keeping bandwidth low?
Are there any resources and documentation on how current MMOs handle the action and movement data from the compression to the handling on the client?
Any resources for movement prediction algorithms?
...
27
votes
4
answers
12k
views
How is load balancing achieved in MMOs?
I believe it's a common requirement of MMOs that processing for a single shard or realm can be done over several servers to ease the load. I'm curious as to how this can be done whilst maintaining a ...
33
votes
7
answers
4k
views
Elegant way to simulate large amounts of entities within a game world
Assume you have a game in which there are many (many many) entities serving some functions, not all of which are constantly needed or need to be considered in every frame. The concrete problem I am ...
75
votes
6
answers
36k
views
How to write a network game? [closed]
Based on Why is it so hard to develop a MMO?:
Networked game development is not trivial; there are large obstacles to overcome in not only latency, but cheat prevention, state management and load ...