Redis is an advanced key-value store in a similar vein to memcache but the dataset is non-volatile. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets and sorted sets.
Redis is a TCP server using the client-server model and what is called a Request/Response protocol.
Redis offers many different ways to do one straightforward thing: store a value (“antirez”) to a key (“redis”).
Key Features
- Easy to set up.
- Native support for atomically manipulating and querying data structures such as lists and sets.
- Very simple to use and configure master-slave replication that allows slave Redis servers to be exact copies of master servers.
- Redis Virtual Memory which allows users to grow their dataset beyond RAM limitations.
- Special encoding of small aggregate data types.
- Loads and mantains the whole dataset into memory, but the dataset is persistent.
- Supports setting timeouts to keys so that this key will be automatically removed when a given amount of time passes.
- Multiple databases with commands to atomically move keys from one database to the other.
- MULTI/EXEC family of commands.
- Popping from a list in a blocking fashion.
- Publish messages onto channels and subscribe to receive all messages that are published on channels.
- Unix domain socket support.
- Syslog support.
Website: redis.io
Support: Documentation
Developer: Salvatore Sanfilippo
License: Redis Source Available License or SSPL
Redis is written in C. Learn C with our recommended free books and free tutorials.
Related Software
| Caching Systems | |
|---|---|
| Redis | Persistent key-value database with network interface |
| Memcached | High-performance distributed memory object caching system |
| Hazelcast | Distributed in-memory data store and computation platform |
| Apache Ignite | Distributed database, caching and processing platform |
| Ehcache | Standards based pure Java in-process cache |
| Java Caching System | Distributed caching system written in Java |
| Couchbase | Distributed key-value database management system |
| yrmcds | LRU cache library and key-value server |
| Cachelot | Memory object caching system with master/slave replication |
Read our verdict in the software roundup.
Explore our comprehensive directory of recommended free and open source software. Our carefully curated collection spans every major software category.This directory is part of our ongoing series of informative articles for Linux enthusiasts. It features hundreds of detailed reviews, along with open source alternatives to proprietary solutions from major corporations such as Google, Microsoft, Apple, Adobe, IBM, Cisco, Oracle, and Autodesk. You’ll also find interesting projects to try, hardware coverage, free programming books and tutorials, and much more. Know a useful open source Linux program that we haven’t covered yet? Let us know by completing this form. |
Read our verdict in the software roundup.
| Key Value Stores | |
|---|---|
| RocksDB | Persistent key-value store for flash and RAM Storage |
| Valkey | High-performance data structure server |
| Apache Cassandra | Distributed database management system |
| ScyllaDB | Real-time big data database |
| Apache Accumulo | Based on Google's BigTable design |
| ArangoDB | Native multi-model database |
| Aerospike CE | Real-time NoSQL database and key-value store |
| Berkeley DB | Family of open source, embeddable databases |
| LevelDB | Fast and lightweight key/value database library by Google |
| Garnet | Remote cache-store |
| KeyDB | High performance fork of Redis |
| Redict | Distributed key/value store |
| Project Voldemort | Distributed data store |
| Scalaris | Distributed transactional key-value store |
Read our verdict in the software roundup.
Explore our comprehensive directory of recommended free and open source software. Our carefully curated collection spans every major software category.This directory is part of our ongoing series of informative articles for Linux enthusiasts. It features hundreds of detailed reviews, along with open source alternatives to proprietary solutions from major corporations such as Google, Microsoft, Apple, Adobe, IBM, Cisco, Oracle, and Autodesk. You’ll also find interesting projects to try, hardware coverage, free programming books and tutorials, and much more. Discovered a useful open source Linux program that we haven’t covered yet? Let us know by completing this form. |

