Redis

Redis
Developer(s) Salvatore Sanfilippo[1][2]
Initial release May 10, 2009 (2009-05-10)
Stable release
4.0.11 / August 3, 2018 (2018-08-03)[3]
Repository Edit this at Wikidata
Written in ANSI C
Operating system Cross-platform
Available in English
Type Data structure store, Key-value database
License BSD
Website redis.io

Redis (Remote Dictionary Server) /'redɪs/, RE-dis[4][5] is an open-source in-memory data structure project implementing a distributed, in-memory key-value database with optional durability. Redis supports different kinds of abstract data structures, such as strings, lists, maps, sets, sorted sets, hyperloglogs, bitmaps, streams and spatial indexes. The project is mainly developed by Salvatore Sanfilippo and is currently sponsored by Redis Labs.[6]

History

The name Redis means REmote DIctionary Server.[7] The project started when Salvatore Sanfilippo, also known as 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 certain specific workloads using traditional database systems, Sanfilippo started to prototype a first proof of concept version of Redis in Tcl.[8] Later Sanfilippo translated that prototype to the C language and implemented the first data type, that was 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 started to get traction, especially among the Ruby community, with GitHub and Instagram being among the first companies adopting it. [9] [10]

Sanfilippo was hired by VMware in March, 2010.[11][12][13] In May, 2013, Redis was sponsored by Pivotal Software (a VMware spin-off).[14] In June 2015, development became sponsored by Redis Labs.[15]

Differences with other database systems

Redis made popular the idea of a system that can be considered at the same time a store and a cache, using a design where data is always modified and read from the main computer memory, but also stored on disk in a format that is not suitable for random access of data, but only in order to reconstruct the data back in memory once the system is restarted. At the same time Redis provides a data model very unusual compared to the other RDBMs, where the user commands do not describe a query to be executed by the database engine, but specific operations that are performed on given abstract data types, hence data must be stored in a way which is suitable later for fast retrieval, 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), in order to duplicate the process holding the data, so that the parent process continues to serve clients, while the child process creates a copy of the data on disk.

Popularity

According to monthly rankings by DB-Engines, Redis is often ranked the most popular key-value database.[16] Redis has also been ranked the #4 NoSQL database in user satisfaction and market presence based on user reviews,[17] the most popular NoSQL database in containers,[18] and the #1 NoSQL database of 2015 by ranking website stackshare.io.[19]

Supported languages

Since version 2.6 Redis features server-side Lua scripting.[20]

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

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
  • HyperLogLogs used for approximated set cardinality size estimation.
  • Stream (computing) of entries with consumer groups.
  • Geospatial data through the implementation of the geohash technique since Redis 3.2.[23]

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

The Redis module ReJSON implements ECMA-404 (the JSON Data Interchange Standard) as a native data type.[24]

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 memory[25] in which some of the dataset is stored on disk, but this feature is deprecated. Persistence is now achieved in two different ways: one is called snapshotting, and is a semi-persistent durability mode where the dataset is asynchronously transferred from memory to disk from time to time, written in RDB dump format. Since version 1.1 the safer alternative is AOF, an append-only file (a journal) that is written as operations modifying the dataset in memory are processed. Redis is able to rewrite the append-only file in the background in order to avoid an indefinite growth of the journal.

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.[26]

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.[7] Redis operates as a single process and is single-threaded or double-threaded when it rewrites the AOF (append-only file).[27] Therefore, a single Redis instance cannot utilize parallel execution of tasks such as stored procedures.

Clustering

Redis introduced clustering in April 2015 with the release of version 3.0.[28] 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.[29] A Redis cluster is able to scale up to 1,000 nodes, achieve "acceptable" write safety and to continue operations when some nodes fail.[30][31]

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.[32] Large companies such as Twitter are using Redis,[33] Amazon Web Services is offering Redis in its portfolio and Microsoft is offering the Redis Cache in Azure.[34]

See also

Commercial implementations

Some companies have used Redis and created commercial offerings around it:

On August 22, 2018, Redis Labs relicensed some Redis Modules under a combination of the Apache License 2.0 and the Commons Clause, which is a source-available arrangement that prohibits users from selling the software.[35][36] Redis Modules were previously licensed under the Affero General Public License.[37][38]

References

  1. An interview with Salvatore Sanfilippo, creator of Redis, working out of Sicily, January 4, 2011, by Stefano Bernardi, EU-Startups
  2. Salvatore Sanfilippo – Welcome to Redis Labs, July 15, 2015, By Itamar Haber, Redis Labs
  3. "Redis 4.0 release notes".
  4. "FAQ – Redis". redis.io.
  5. "Google Groups". groups.google.com.
  6. Kepes, Ben (July 15, 2015),"Redis Labs hires the creator of Redis, Salvatore Sanfilippo", Network World, Retrieved August 30, 2015.
  7. 1 2 "FAQ, Redis".
  8. Salvatore Sanfilippo (April 28, 2017). "Tcl prototype of Redis". Github gist. Retrieved October 8, 2018.
  9. Chris Wanstrath (November 3, 2009). "Introducing Resque". Blog. Retrieved October 8, 2018.
  10. Instagram Engineering (October 31, 2011). "Storing hundreds of millions of simple key-value pairs in Redis". Blog. Retrieved October 8, 2018.
  11. Gwen Shapira (March 17, 2010). "VMware Hires Redis Key Developer – But Why?". Blog. Retrieved September 25, 2016.
  12. Salvatore Sanfilippo (March 15, 2010). "VMware: the new Redis home". Blog. Retrieved September 25, 2016.
  13. Derek Collison (March 15, 2010). "VMware: The Console: VMware hires key developer for Redis". Blog. Archived from the original on March 22, 2010. Retrieved September 25, 2016.
  14. Salvatore Sanfilippo. "Redis Sponsors". Redis Labs. Retrieved September 25, 2016.
  15. Thanks Pivotal, Hello Redis Labs, July 15, 2015, By Salvatore Sanfilippo, Redis Labs
  16. "DB-Engines Ranking - popularity ranking of key-value stores". db-engines.com.
  17. "Best NoSQL Databases: Fall 2015 Report from G2 Crowd".
  18. "8 Surprising Facts about Real Docker Adoption". Datadog.
  19. "Top 50 Developer Tools & Services of 2015 - StackShare".
  20. "EVAL – Redis". redis.io.
  21. 1 2 "Redis". redis.io.
  22. Lewis, B. W. (5 July 2015). "rredis: "Redis" Key/Value Database Client" via R-Packages.
  23. Redis 3.2 Release Notes, Retrieved 2017-03-10
  24. "ReJSON - a JSON data type for Redis". oss.redislabs.com.
  25. Redis documentation "Virtual Memory", redis.io, accessed January 18, 2011.
  26. "Google Code Archive - Long-term storage for Google Code Project Hosting". code.google.com.
  27. "Redis on the Raspberry Pi: adventures in unaligned lands - <antirez>". antirez.com.
  28. Redis 3.0 Release Notes, Retrieved 2017-03-10
  29. Cluster Spec, Retrieved 2017-03-10
  30. Cluster Spec, Retrieved 2017-03-10
  31. Cluster Tutorial, Retrieved 2017-03-10
  32. "Top 5 Redis use cases - ObjectRocket". 7 November 2017.
  33. "How Twitter Uses Redis to Scale - 105TB RAM, 39MM QPS, 10,000+ Instances - High Scalability -". highscalability.com.
  34. "Azure Redis Cache - Redis cache cloud service - Microsoft Azure". azure.microsoft.com.
  35. "Commons Clause License". Commons Clause License. Retrieved 2018-08-24.
  36. Asay, Matt. "Why Redis Labs made a huge mistake when it changed its open source licensing strategy". TechRepublic. Retrieved 2018-08-24.
  37. Shoolman, Yiftach (5 July 2016). "Why Redis Labs' Modules are AGPL". Redis Labs. Retrieved 2018-08-24.
  38. Claburn, Thomas. "Redis has a license to kill: Open-source database maker takes some code proprietary". The Register. Retrieved 2018-08-24.
Further reading

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.