diff options
author | Josh Soref <2119212+jsoref@users.noreply.github.com> | 2021-06-17 10:02:30 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-17 15:02:30 +0100 |
commit | fd88b756fc20dedea15a8a08c21e8f7af6612e4e (patch) | |
tree | 81faaface4f605d329848b0c9b7dae8c7dad5b7f /docs/REDIS | |
parent | 8d1bc95faf095984dcc39b4c51de5bc5051b9a12 (diff) |
Fix various spelling issues (#274).
Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>.
Diffstat (limited to 'docs/REDIS')
-rw-r--r-- | docs/REDIS | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/REDIS b/docs/REDIS index d18585979..8f7a076fd 100644 --- a/docs/REDIS +++ b/docs/REDIS @@ -32,7 +32,7 @@ Table of Contents hash - The keys in hash are the actual objects, stored as hashes. For example, if I had just looked up all BotInfo ids and wanted to iterate - over all of them, I woulld start by: + over all of them, I would start by: redis 127.0.0.1:6379> HGETALL hash:BotInfo:1 @@ -73,7 +73,7 @@ Table of Contents (https://redis.io/topics/notifications). This allows Redis to notify Anope of any external changes to objects in the database. Once notified, Anope will immediately update the object. Otherwise, Anope keeps all objects in memory - and will not regularly read from the databaes once started. + and will not regularly read from the database once started. You can use this to modify objects in Redis and have them immediately reflected back into Anope. Additionally you can use this feature to run multiple Anope @@ -93,7 +93,7 @@ Table of Contents The key space ids and value are managed entirely by Anope, you do not (and should not) modify them. Once you modify the object (hash), Anope will - update them for you to correctly refelect any changes made to the object. + update them for you to correctly reflect any changes made to the object. Finally, always use atomic operations. If you are inserting a new object with multiple commands, or inserting multiple objects at once, specifically if the |