From ddf3f4c20cc9d48170cea2f1ccc22198690b149e Mon Sep 17 00:00:00 2001 From: Stoabrogga <38475780+Stoabrogga@users.noreply.github.com> Date: Sun, 15 Sep 2019 11:47:19 +0200 Subject: RAM requirements (#122) --- docs/Memory-Usage.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 docs/Memory-Usage.md (limited to 'docs/Memory-Usage.md') diff --git a/docs/Memory-Usage.md b/docs/Memory-Usage.md new file mode 100644 index 0000000..ae5479c --- /dev/null +++ b/docs/Memory-Usage.md @@ -0,0 +1,14 @@ +### AzerothCore Memory Usage + +AzerothCore is based on SunwellCore (a fork from TC). SunwellCore was a public server with 4000 players online and they made sure their core could handle that amount of players easily. Reading data from the ram is much faster than reading from the hard disk (there are entire systems based on this principle). That's one of the reason there is a bigger ram usage. + +#### RAM Requirements + +| Number of players | Minimum RAM requirement | +|-------------------|-------------------------| +| 1-5 | 4 GB | +| 10 | 6 GB | +| 100 | 16 GB | +| >100 | >16 GB | + +We recommend at least 16 GB as the server will gradually cache the world maps as the players explore them which finally takes up to at least 11 GB of RAM usage. -- cgit