Menu
Home Explore People Places Arts History Plants & Animals Science Life & Culture Technology
On this page
Redis
Open-source in-memory key–value database

Redis is a popular NoSQL key–value database that functions as an in-memory data store, distributed cache, and message broker with optional durability. By keeping data in memory, it delivers low-latency reads and writes, ideal for caching and real-time applications. Created by Salvatore Sanfilippo in 2009, Redis was managed by a core team sponsored by Redis Labs until 2020. In 2018, some Redis modules adopted the SSPL, and in 2024, Redis’s licensing changed from the open-source BSD-3 license to a dual-license model under the Redis Source Available License and SSPL.

Related Image Collections Add Image
We don't have any YouTube videos related to Redis yet.
We don't have any PDF documents related to Redis yet.
We don't have any Books related to Redis yet.
We don't have any archived web articles related to Redis yet.

History

The name Redis means Remote Dictionary Server.15 The Redis project began when Salvatore Sanfilippo, nicknamed antirez, the original developer of Redis, was trying to improve the scalability of his Italian startup, developing a real-time web log analyzer. After encountering significant problems in scaling some types of workloads using traditional database systems, Sanfilippo began in 2009 to prototype a first proof of concept version of Redis in Tcl.16 Later Sanfilippo translated that prototype to the C language and implemented the first data type, the list. After a few weeks of using the project internally with success, Sanfilippo decided to open source it, announcing the project on Hacker News. The project began to get traction, particularly among the Ruby community, with GitHub and Instagram being among the first companies adopting it.1718

Sanfilippo was hired by VMware in March 2010.192021

In May 2013, Redis was sponsored by Pivotal Software (a VMware spin-off).22

In June 2015, development became sponsored by Redis Labs.23

In August 2018, Redis Labs announced the switch to a source-available software license, Server Side Public License for some of the optional modules available for Redis,24 while affirming that the core software will remain BSD-licensed.25

In October 2018, Redis 5.0 was released, introducing Redis Stream – a new data structure that allows storage of multiple fields and string values with an automatic, time-based sequence at a single key.26

In June 2020, Salvatore Sanfilippo stepped down as Redis' sole maintainer. Sanfilippo was succeeded by Yossi Gottlieb and Oran Agra.2728

In March 2024, Redis switched to a different proprietary software license, styled as the Redis Source Available License v2, and the Server Side Public License v1, also for its core repository,29 breaking the 2018 pledge. As a consequence, the Linux Foundation created a fork under the name of Valkey,30 allowing community maintainers, contributors, and users to continue working on an open source version of the Redis database.

Differences from other database systems

Redis popularized the idea of a system that can be considered a store and a cache at the same time. It was designed so that data is always modified and read from the main computer memory, but also stored on disk in a format that is unsuitable for random data access. The formatted data is only reconstructed into memory once the system restarts.

Redis also provides a data model that is very unusual compared to a relational database management system (RDBMS). User commands do not describe a query to be executed by the database engine but rather specific operations that are performed on given abstract data types. Therefore data must be stored in a way which is suitable later for fast retrieval. The retrieval is done without help from the database system in form of secondary indexes, aggregations or other common features of traditional RDBMS. The Redis implementation makes heavy use of the fork system call, to duplicate the process holding the data, so that the parent process continues to serve clients while the child process writes the in-memory data to disk.

Popularity

According to monthly DB-Engines rankings, Redis is often the most popular key–value database.31 Redis has also been ranked the #4 NoSQL database in user satisfaction and market presence based on user reviews,32 the most popular NoSQL database in containers,33 and the #4 Data store of 2019 by ranking website stackshare.io.34 It was voted most loved database in the Stack Overflow Developer Survey each year from 2017 to 2021.35

Supported languages

Since version 2.6, Redis features server-side scripting in the language Lua.36

Many programming languages have Redis language bindings on the client side, including:37 ActionScript, C, C++, C#, Chicken, Clojure, Common Lisp, Crystal, D, Dart, Delphi,38 Elixir, Erlang, Go, Haskell, Haxe, Io, Java, Nim, JavaScript (Node.js), Julia, Lua, Objective-C, OCaml, Perl, PHP, Pure Data, Python, R,39 Racket, Ruby, Rust, Scala, Smalltalk, Swift, and Tcl. Several client software programs exist in these languages.40

Data types

Redis maps keys to types of values. An important difference between Redis and other structured storage systems is that Redis supports not only strings, but also abstract data types:

  • Lists of strings
  • Sets of strings (collections of non-repeating unsorted elements)
  • Sorted sets of strings (collections of non-repeating elements ordered by a floating-point number called score)
  • Hash tables where keys and values are strings
  • Bitmaps
  • HyperLogLogs used for approximated set cardinality size estimation, available since Redis 2.8.9 in April 2014.41
  • Stream of entries with consumer groups, allows you to store multiple fields and string values with an automatic, time-based sequence at a single key, available since Redis 5.0 in October 201842
  • Geospatial data through the implementation of the geohash technique, available since Redis 3.2.43

The type of a value determines what operations (called commands) are available for the value. Redis supports high-level, atomic, server-side operations like intersection, union, and difference between sets and sorting of lists, sets and sorted sets.

More data types are supported based on Redis Modules API. Note, that some of them are dual licensed, and not under the BSD 3 clause:44

  • JSON – RedisJSON45 implements ECMA-404 (the JavaScript Object Notation Data Interchange Standard) as a native data type.46
  • Search - A query engine for Redis, providing secondary indexing, full-text search, vector similarity search and aggregations.47
  • Time series – RedisTimeSeries48 implements a time series data structure
  • Bloom filter, Cuckoo filter, Count–min sketch, and Top-K – RedisBloom49 implements a set of probabilistic data structures for Redis
  • Others50

Former implementations include:

  • Graph – RedisGraph51 implements a queryable property graph
    • RedisGraph has been discontinued,52 and continued in the form of a fork called FalkorDB.53

Persistence

Redis typically holds the whole dataset in memory. Versions up to 2.4 could be configured to use what they refer to as virtual memory54 in which some of the dataset is stored on disk, but this feature is deprecated. Persistence in Redis can be achieved through two different methods. First by snapshotting, where the dataset is asynchronously transferred from memory to disk at regular intervals as a binary dump, using the Redis RDB Dump File Format. Alternatively by journaling, where a record of each operation that modifies the dataset is added to an append-only file (AOF) in a background process. Redis can rewrite the append-only file in the background to avoid an indefinite growth of the journal. Journaling was introduced in version 1.1 and is generally considered the safer approach.

By default, Redis writes data to a file system at least every 2 seconds, with more or less robust options available if needed. In the case of a complete system failure on default settings, only a few seconds of data would be lost.

Replication

Redis supports master–replica replication. Data from any Redis server can replicate to any number of replicas. A replica may be a master to another replica. This allows Redis to implement a single-rooted replication tree. Redis replicas can be configured to accept writes, permitting intentional and unintentional inconsistency between instances. The publish–subscribe feature is fully implemented, so a client of a replica may subscribe to a channel and receive a full feed of messages published to the master, anywhere up the replication tree. Replication is useful for read (but not write) scalability or data redundancy.55

Performance

When the durability of data is not needed, the in-memory nature of Redis allows it to perform well compared to database systems that write every change to disk before considering a transaction committed.56 Redis operates as a single process and is single-threaded or double-threaded when it rewrites the AOF (append-only file).57 Thus, a single Redis instance cannot use parallel execution of tasks such as stored procedures.

Clustering

Redis introduced clustering in April 2015 with the release of version 3.0.58 The cluster specification implements a subset of Redis commands: all single-key commands are available, multi-key operations (commands related to unions and intersections) are restricted to keys belonging to the same node, and commands related to database selection operations are unavailable.59 A Redis cluster can scale up to 1,000 nodes, achieve "acceptable" write safety and to continue operations when some nodes fail.6061

Use cases

Due to the nature of the database design, typical use cases are session caching, full page cache, message queue applications, leaderboards and counting among others.62 The publish–subscribe messaging paradigm allows real-time communication between servers.

Amazon Web Services offers a managed Redis service called ElastiCache for Redis, Google offers a managed Redis service called Cloud Memorystore,63 Microsoft offers Azure Cache for Redis in Azure,64 and Alibaba offers ApsaraDB for Redis in Alibaba Cloud.65

Users

Redis has been used by companies including Twitter,6667 Airbnb,68 Tinder,69 Yahoo,70 Adobe,71 Hulu,72 Amazon73 and OpenAI.74

See also

Further reading

References

  1. "FAQ: Redis". Redis.io. Retrieved 12 February 2022. https://redis.io/topics/faq

  2. "Google Groups". groups.google.com. Retrieved 25 February 2022. https://groups.google.com/d/msg/redis-db/MtwjZC5gCeE/f-5T-OIcCW8J

  3. "FAQ: Redis". Redis.io. Retrieved 12 February 2022. https://redis.io/topics/faq

  4. "Redis". Redis. Retrieved 2023-07-22. https://redis.io/

  5. "DB-Engines Ranking - popularity ranking of key-value stores". DB-Engines. http://db-engines.com/en/ranking/key-value+store

  6. Clark, Lindsay. "Redis becomes the most popular database on AWS as complex cloud application deployments surge". www.theregister.com. Retrieved 2023-07-22. https://www.theregister.com/2020/11/23/redis_the_most_popular_db_on_aws/

  7. "Instablinks EP 07: Redis™—The Most Popular In-Memory Database Technology". Instaclustr. Retrieved 2023-07-22. https://www.instaclustr.com/resources/instablinks-ep-07-redis-the-most-popular-in-memory-database-technology/

  8. "DB-Engines Ranking". DB-Engines. Retrieved 2023-07-22. https://db-engines.com/en/ranking

  9. "A conversation with Salvatore Sanfilippo, creator of the open-source database Redis". VentureBeat. 2016-06-20. Retrieved 2021-06-29. https://venturebeat.com/2016/06/19/redis-creator/

  10. Kepes, Ben (July 15, 2015). "Redis Labs hires the creator of Redis, Salvatore Sanfilippo". Network World. Retrieved August 30, 2015. https://www.networkworld.com/article/941072/redis-labs-hires-the-creator-of-redis-salvatore-sanfilippo.html

  11. Francisco, Thomas Claburn in San. "Database maestro Antirez says arrivederci to Redis: Seems he wants an unstructured life writing code, not a structured one managing software". www.theregister.com. Retrieved 2021-06-29. https://www.theregister.com/2020/06/30/redis_creator_antirez_quits/

  12. "Database startup Redis Labs rebrands as ... just Redis". SiliconANGLE. 2021-08-11. Retrieved 2021-08-11. https://siliconangle.com/2021/08/11/redis-labs-rebrands-redis/

  13. Claburn, Thomas. "Redis has a license to kill: Open-source database maker takes some code proprietary". www.theregister.com. Retrieved 2024-03-21. https://www.theregister.com/2018/08/23/redis_database_license_change/

  14. "LICENSE.txt". GitHub. 20 March 2024. https://github.com/redis/redis/blob/0b34396924eca4edc524469886dc5be6c77ec4ed/LICENSE.txt

  15. "FAQ: Redis". Redis.io. Retrieved 12 February 2022. https://redis.io/topics/faq

  16. Sanfilippo, Salvatore (April 28, 2017). "Tcl prototype of Redis". GitHub Gist. Retrieved October 8, 2018. https://gist.github.com/antirez/6ca04dd191bdb82aad9fb241013e88a8

  17. Wanstrath, Chris (November 3, 2009). "Introducing Resque". Blog. Retrieved October 8, 2018. https://blog.github.com/2009-11-03-introducing-resque/

  18. Krieger, Mike (October 31, 2011). "Storing hundreds of millions of simple key-value pairs in Redis". Instagram Engineering Blog. Retrieved October 8, 2018. https://instagram-engineering.com/storing-hundreds-of-millions-of-simple-key-value-pairs-in-redis-1091ae80f74c

  19. Shapira, Gwen (March 17, 2010). "VMware Hires Redis Key Developer – But Why?". Blog. Retrieved September 25, 2016. https://prodlife.wordpress.com/2010/03/17/vmware-hires-redis-key-developer-but-why/

  20. Sanfilippo, Salvatore (March 15, 2010). "VMware: the new Redis home". Blog. Retrieved September 25, 2016. http://antirez.com/post/vmware-the-new-redis-home.html

  21. Collison, Derek (March 15, 2010). "VMware: The Console: VMware hires key developer for Redis". VMware Blog. Archived from the original on March 22, 2010. Retrieved September 25, 2016. https://web.archive.org/web/20100322191425/http://blogs.vmware.com/console/2010/03/vmware-hires-key-developer-for-redis.html

  22. Sanfilippo, Salvatore. "Redis Sponsors". Redis.io. Redis Labs. Retrieved April 11, 2019. https://redis.io/topics/sponsors

  23. Sanfilippo, Salvatore (July 15, 2015). "Thanks Pivotal, Hello Redis Labs". . Retrieved 2019-04-03. http://antirez.com/news/91

  24. Claburn, Thomas. "Redis has a license to kill: Open-source database maker takes some code proprietary". www.theregister.com. Retrieved 2024-03-21. https://www.theregister.com/2018/08/23/redis_database_license_change/

  25. Shoolman, Yiftach (August 22, 2018). "Redis' License is BSD and will remain BSD". Redis.io. Redis Labs. Retrieved September 30, 2024. https://redis.io/blog/redis-license-bsd-will-remain-bsd/

  26. "Redis 5.0 is here!". 22 October 2018. https://redis.com/blog/redis-5-0-is-here/

  27. "Database maestro Antirez says arrivederci to Redis: Seems he wants an unstructured life writing code, not a structured one managing software". theregister.com. https://www.theregister.com/2020/06/30/redis_creator_antirez_quits/

  28. "The end of the Redis adventure -". antirez.com. Retrieved 2020-11-10. http://antirez.com/news/133

  29. "LICENSE.txt". GitHub. 20 March 2024. https://github.com/redis/redis/blob/0b34396924eca4edc524469886dc5be6c77ec4ed/LICENSE.txt

  30. "Linux Foundation Launches Open Source Valkey Community". https://www.linuxfoundation.org/press/linux-foundation-launches-open-source-valkey-community

  31. "DB-Engines Ranking - popularity ranking of key-value stores". DB-Engines. http://db-engines.com/en/ranking/key-value+store

  32. "Best NoSQL Databases: Fall 2015 Report from G2 Crowd". G2 Crowd. Archived from the original on 2015-08-24. Retrieved 2015-08-25. https://web.archive.org/web/20150824012237/http://about.g2crowd.com/press-release/best-nosql-databases-fall-2015/

  33. "8 Surprising Facts about Real Docker Adoption". Datadog. 13 June 2018. https://www.datadoghq.com/docker-adoption/

  34. "🏆 The Top 50 Developer Tools of 2019". StackShare. Retrieved 2020-07-28. https://stackshare.io/posts/top-developer-tools-2019

  35. "Developer Survey Results 2021: Most Loved, Dreaded, and Wanted Databases". Stack Overflow. Stack Exchange. Retrieved 2021-08-23. https://insights.stackoverflow.com/survey/2021#section-most-loved-dreaded-and-wanted-databases

  36. "EVAL – Redis". redis.io. https://redis.io/commands/eval

  37. "Redis". redis.io. https://redis.io/clients

  38. "Danieleteti/Delphiredisclient". GitHub. 17 September 2022. https://github.com/danieleteti/delphiredisclient

  39. Lewis, B. W. (5 July 2015). "rredis: "Redis" Key/Value Database Client". The Comprehensive R Archive Network. Retrieved 2019-04-03. https://cran.r-project.org/web/packages/rredis/

  40. "Redis". redis.io. https://redis.io/clients

  41. "Redis 5.0 is here!". 22 October 2018. https://redis.com/blog/redis-5-0-is-here/

  42. "Redis 5.0 is here!". 22 October 2018. https://redis.com/blog/redis-5-0-is-here/

  43. "Redis 3.2 Release Notes". GitHub. Retrieved 2017-03-10. https://github.com/antirez/redis/blob/3.2/00-RELEASENOTES

  44. "Redis Licensing Overview". Redis. Retrieved 2023-09-30. https://redis.com/legal/licenses/

  45. "RedisJSON - a JSON data type for Redis". https://oss.redis.com/redisjson/

  46. "RedisJSON - a JSON data type for Redis". redisjson.io. http://redisjson.io

  47. RediSearch, RediSearch, 2023-09-30, retrieved 2023-09-30 https://github.com/RediSearch/RediSearch

  48. "RedisTimeSeries - Time-Series data structure for Redis". https://oss.redis.com/redistimeseries

  49. "RedisBloom - Probabilistic Datatypes Module for Redis". https://oss.redis.com/redisbloom/

  50. "Modules". Redis. Retrieved 2023-09-30. https://redis.io/resources/modules/

  51. "RedisGraph - a graph database module for Redis". https://oss.redis.com/redisgraph/

  52. Kogan, Lior (2023-07-05). "RedisGraph End-of-Life Announcement". Redis. Retrieved 2023-09-30. https://redis.com/blog/redisgraph-eol/

  53. FalkorDB, FalkorDB, 2023-09-29, retrieved 2023-09-30 https://github.com/FalkorDB/FalkorDB

  54. "Virtual Memory". Redis.io. Retrieved April 11, 2019. https://redis.io/topics/virtual-memory

  55. "Google Code Archive - Long-term storage for Google Code Project Hosting". code.google.com. https://code.google.com/p/redis/wiki/ReplicationHowto

  56. "FAQ: Redis". Redis.io. Retrieved 12 February 2022. https://redis.io/topics/faq

  57. "Redis on the Raspberry Pi: adventures in unaligned lands - ". antirez.com. http://antirez.com/news/111

  58. "Redis 3.0 Release Notes". GitHub. Retrieved 2017-03-10. https://github.com/antirez/redis/blob/3.0/00-RELEASENOTES

  59. "Cluster Spec". Retrieved 2017-03-10. https://redis.io/topics/cluster-spec#implemented-subset

  60. "Cluster Spec". Retrieved 2017-03-10. https://redis.io/topics/cluster-spec

  61. "Cluster Tutorial". Retrieved 2017-03-10. https://redis.io/topics/cluster-tutorial

  62. "Top 5 Redis use cases - ObjectRocket". ObjectRocket. Rackspace. 7 November 2017. http://objectrocket.com/blog/how-to/top-5-redis-use-cases

  63. "Memorystore: in-memory data store". Google Cloud. Retrieved 2023-02-03. https://cloud.google.com/memorystore

  64. "Azure Redis Cache - Redis cache cloud service - Microsoft Azure". azure.microsoft.com. https://azure.microsoft.com/en-us/services/cache/

  65. "ApsaraDB for Redis: A Key Value Database Service - Alibaba Cloud". www.alibabacloud.com. https://www.alibabacloud.com/product/apsaradb-for-redis

  66. Scaling Redis at Twitter, 31 August 2014, retrieved 2023-07-22 https://www.youtube.com/watch?v=rP9EKvWt0zo

  67. Using Redis at Scale at Twitter - by Rashmi Ramesh of Twitter - RedisConf17 -, 5 July 2017, retrieved 2023-07-22 https://www.youtube.com/watch?v=QznaOSk20nU

  68. AWS re:Invent 2018: Airbnb's Journey from Self-Managed Redis to ElastiCache for Redis (DAT319), 28 November 2018, retrieved 2023-07-22 https://www.youtube.com/watch?v=eyd_8efUCwM

  69. "Building resiliency at scale at Tinder with Amazon ElastiCache | AWS Database Blog". aws.amazon.com. 2020-01-30. Retrieved 2023-07-22. https://aws.amazon.com/blogs/database/building-resiliency-at-scale-at-tinder-with-amazon-elasticache/

  70. AWS re:Invent 2022 - How Yahoo cost optimizes their in-memory workloads with AWS (DAT321), 2 December 2022, retrieved 2023-07-22 https://www.youtube.com/watch?v=jEwrcpq2mLM

  71. AWS re:Invent 2014 | (SDD402) Amazon ElastiCache Deep Dive, 17 November 2014, retrieved 2023-07-22 https://www.youtube.com/watch?v=cEkHBqhQnog

  72. "Hulu Case Study". Amazon Web Services, Inc. Retrieved 2023-07-22. https://aws.amazon.com/solutions/case-studies/hulu/

  73. "Amazon GameOn Database Migration Case Study – Amazon Web Services (AWS)". Amazon Web Services, Inc. Retrieved 2023-07-22. https://aws.amazon.com/solutions/case-studies/amazon-gameon/

  74. "Elevated API Errors". status.openai.com. Retrieved 2023-10-28. https://status.openai.com/incidents/fk0tcbydtybr