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)
---
_includes/azerothcore/sidebar.html | 1 +
docs/FAQ.md | 4 ++--
docs/Memory-Usage.md | 14 ++++++++++++++
docs/smart_scripts.md | 4 ++--
4 files changed, 19 insertions(+), 4 deletions(-)
create mode 100644 docs/Memory-Usage.md
diff --git a/_includes/azerothcore/sidebar.html b/_includes/azerothcore/sidebar.html
index 8627ef2..f005269 100644
--- a/_includes/azerothcore/sidebar.html
+++ b/_includes/azerothcore/sidebar.html
@@ -10,6 +10,7 @@
Installation
Database Setup
Update your core
+ Memory Usage
Install on the cloud:
diff --git a/docs/FAQ.md b/docs/FAQ.md
index 8593ddf..c354d54 100644
--- a/docs/FAQ.md
+++ b/docs/FAQ.md
@@ -6,9 +6,9 @@
- You can put bounties (money) on issues and suggestions by using bountysource. Read this: [Bountysource](Bountysource.md)
- If you're a developer, check out this page: Contribute
-#### 2 - Why is AzerothCore using more ram than TrinityCore?
+#### 2 - Why is AzerothCore using more RAM than TrinityCore?
-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 player 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.
+See [Memory Usage](Memory-Usage.md)
#### 3 - I want this fixed or this feature or this module. How can I proceed?
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.
diff --git a/docs/smart_scripts.md b/docs/smart_scripts.md
index 54d4edc..79edb98 100644
--- a/docs/smart_scripts.md
+++ b/docs/smart_scripts.md
@@ -594,7 +594,7 @@ This is the probability of the event to occur as a percentage from 0-100. So, if
Param2 |
Param3 |
Param4 |
-Param5 |
+Param5 |
Comment |
@@ -4176,7 +4176,7 @@ This is the probability of the event to occur as a percentage from 0-100. So, if
target_param1 |
target_param2 |
target_param3 |
-target_param4 |
+target_param4 |
target_x |
target_y |
target_z |
--
cgit