User:Usikyle/sandbox

From Wikipedia, the free encyclopedia
Redis
Developer(s)Salvatore Sanfilippo[1][2]
Initial releaseMay 10, 2009; 15 years ago (2009-05-10)
Stable release
3.2.8 / February 12, 2017; 7 years ago (2017-02-12)[3]
Written inANSI C
Operating systemCross-platform
Available inEnglish
TypeData structure store
LicenseBSD
Websiteredis.io

Redis is an open-source software project (sponsored by Redis Labs[4]) that implements data structure servers. It is networked, in-memory, and stores keys with optional durability.

History[edit]

The name Redis means REmote DIctionary Server.[5] Salvatore Sanfilippo, the original developer of Redis, was hired by VMware in March, 2010.[6][7][8] In May, 2013, Redis was sponsored by Pivotal Software (a VMware spin-off).[9] In June 2015, development became sponsored by Redis Labs.[10]

According to monthly rankings by DB-Engines.com, Redis is often ranked the most popular key-value database.[11] Redis has also been ranked the #4 NoSQL database in user satisfaction and market presence based on user reviews,[12] the most popular NoSQL database in containers,[13] and the #1 NoSQL database among Top 50 Developer Tools & Services.[14]

Supported languages[edit]

Many languages have Redis bindings, including:[15] ActionScript, C, C++, C#, Chicken Scheme, Clojure, Common Lisp, D, Dart, Erlang, Go, Haskell, Haxe, Io, Java, JavaScript (Node.js), Julia, Lua, Objective-C, OCaml, Perl, PHP, Pure Data, Python, R,[16] Racket, Ruby, Rust, Scala, Smalltalk and Tcl.

Data types[edit]

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
  • Geospatial data through the implementation of the geohash technique[17].

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.

Modules[edit]

The functionality of Redis can be extended by use of modules starting from version 4.0 RC1 [18] [19]. Modules can add new commands and data types that are referable on equal footing with built-in commands and data types.[20]. The Redis modules official API is aimed at C, however it is possible to write modules with any language with C binding functionalities [21].

Persistence[edit]

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[22] 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[edit]

Redis supports master-slave replication. Data from any Redis server can replicate to any number of slaves. A slave may be a master to another slave. This allows Redis to implement a single-rooted replication tree. Redis slaves 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 slave 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.[23]

Performance[edit]

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.[5] Redis operates as a single process and is single-threaded. Therefore, a single Redis instance cannot utilize parallel execution of tasks such as stored procedures.

Clustering[edit]

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

See also[edit]

References[edit]

  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 3.2 release notes".
  4. ^ Kepes, Ben (July 15, 2015),"Redis Labs hires the creator of Redis, Salvatore Sanfilippo", Network World, Retrieved August 30, 2015.
  5. ^ a b "FAQ, Redis".
  6. ^ Gwen Shapira (March 17, 2010). "VMware Hires Redis Key Developer – But Why?". Blog. Retrieved September 25, 2016.
  7. ^ Salvatore Sanfilippo (March 15, 2010). "VMware: the new Redis home". Blog. Retrieved September 25, 2016.
  8. ^ 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.
  9. ^ Salvatore Sanfilippo. "Redis Sponsors". Redis Labs. Retrieved September 25, 2016.
  10. ^ Thanks Pivotal, Hello Redis Labs, July 15, 2015, By Salvatore Sanfilippo, Redis Labs
  11. ^ DB-Engines Ranking of Key-value Stores
  12. ^ Best NoSQL Databases: Fall 2015 Report from G2 Crowd
  13. ^ The Current State of Container Usage
  14. ^ Top 50 Developer Tools and Services of 2015
  15. ^ Redis language bindings
  16. ^ CRAN – Package rredis
  17. ^ Redis 3.2 Release Notes, Retrieved 2017-03-10
  18. ^ Redis.4.0 Release Notes, Retrieved 2017-03-10
  19. ^ Redis launches modules to add extensibility to the open source database, Retrieved 2017-03-10
  20. ^ Writing Redis Modules, , Retrieved 2017-03-10
  21. ^ Redis Modules: an introduction to the API, Retrieved 2017-03-10
  22. ^ Redis documentation "Virtual Memory", redis.io, accessed January 18, 2011.
  23. ^ ReplicationHowto – redis – A persistent key-value database with built-in net interface written in ANSI-C for Posix systems – Google Project Hosting
  24. ^ Redis 3.0 Release Notes, Retrieved 2017-03-10
  25. ^ a b Cluster Spec, Retrieved 2017-03-10 Cite error: The named reference "cluster-commands" was defined multiple times with different content (see the help page).
  26. ^ Cluster Tutorial, Retrieved 2017-03-10
Further reading

External links[edit]