Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-10-20 11:43:02 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-10-20 11:43:02 +0300
commitd9ab72d6080f594d0b3cae15f14b3ef2c6c638cb (patch)
tree2341ef426af70ad1e289c38036737e04b0aa5007 /doc/development/redis.md
parentd6e514dd13db8947884cd58fe2a9c2a063400a9b (diff)
Add latest changes from gitlab-org/gitlab@14-4-stable-eev14.4.0-rc42
Diffstat (limited to 'doc/development/redis.md')
-rw-r--r--doc/development/redis.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/development/redis.md b/doc/development/redis.md
index e631a6ec80c..fa07cebdc61 100644
--- a/doc/development/redis.md
+++ b/doc/development/redis.md
@@ -6,12 +6,17 @@ info: To determine the technical writer assigned to the Stage/Group associated w
# Redis guidelines
+## Redis instances
+
GitLab uses [Redis](https://redis.io) for the following distinct purposes:
- Caching (mostly via `Rails.cache`).
- As a job processing queue with [Sidekiq](sidekiq_style_guide.md).
- To manage the shared application state.
+- To store CI trace chunks.
- As a Pub/Sub queue backend for ActionCable.
+- Rate limiting state storage.
+- Sessions.
In most environments (including the GDK), all of these point to the same
Redis instance.
@@ -29,6 +34,8 @@ more often than it is read.
If [Geo](geo.md) is enabled, each Geo node gets its own, independent Redis
database.
+We have [development documentation on adding a new Redis instance](redis/new_redis_instance.md).
+
## Key naming
Redis is a flat namespace with no hierarchy, which means we must pay attention