From 3695a823ee1952465c8ce2173029dfaf685b4a86 Mon Sep 17 00:00:00 2001 From: Jordan Date: Mon, 1 Aug 2022 04:18:11 -0500 Subject: [PATCH] Add Resources for Redis (#1350) * Add Resources for Redis * Add Resources for Redis - Official website Co-authored-by: Kamran Ahmed --- .../content/110-caching/101-server-side/100-redis.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/content/roadmaps/101-backend/content/110-caching/101-server-side/100-redis.md b/content/roadmaps/101-backend/content/110-caching/101-server-side/100-redis.md index 23d39d786..979ad74d8 100644 --- a/content/roadmaps/101-backend/content/110-caching/101-server-side/100-redis.md +++ b/content/roadmaps/101-backend/content/110-caching/101-server-side/100-redis.md @@ -1,3 +1,7 @@ # Redis Redis is an open source (BSD licensed), in-memory **data structure store** used as a database, cache, message broker, and streaming engine. Redis provides data structures such as [strings](https://redis.io/topics/data-types-intro#strings), [hashes](https://redis.io/topics/data-types-intro#hashes), [lists](https://redis.io/topics/data-types-intro#lists), [sets](https://redis.io/topics/data-types-intro#sets), [sorted sets](https://redis.io/topics/data-types-intro#sorted-sets) with range queries, [bitmaps](https://redis.io/topics/data-types-intro#bitmaps), [hyperloglogs](https://redis.io/topics/data-types-intro#hyperloglogs), [geospatial indexes](https://redis.io/commands/geoadd), and [streams](https://redis.io/topics/streams-intro). Redis has built-in [replication](https://redis.io/topics/replication), [Lua scripting](https://redis.io/commands/eval), [LRU eviction](https://redis.io/topics/lru-cache), [transactions](https://redis.io/topics/transactions), and different levels of [on-disk persistence](https://redis.io/topics/persistence), and provides high availability via [Redis Sentinel](https://redis.io/topics/sentinel) and automatic partitioning with [Redis Cluster](https://redis.io/topics/cluster-tutorial). + +Free Content + +Redis Website