Big Data

Redis – in-memory data structure store

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
RedisPersistent key-value database with network interface
MemcachedHigh-performance distributed memory object caching system
HazelcastDistributed in-memory data store and computation platform
Apache IgniteDistributed database, caching and processing platform
EhcacheStandards based pure Java in-process cache
Java Caching SystemDistributed caching system written in Java
CouchbaseDistributed key-value database management system
yrmcdsLRU cache library and key-value server
CachelotMemory object caching system with master/slave replication

Read our verdict in the software roundup.

Best Free and Open Source Software 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
RocksDBPersistent key-value store for flash and RAM Storage
ValkeyHigh-performance data structure server
Apache CassandraDistributed database management system
ScyllaDBReal-time big data database
Apache AccumuloBased on Google's BigTable design
ArangoDBNative multi-model database
Aerospike CEReal-time NoSQL database and key-value store
Berkeley DBFamily of open source, embeddable databases
LevelDBFast and lightweight key/value database library by Google
GarnetRemote cache-store
KeyDBHigh performance fork of Redis
RedictDistributed key/value store
Project VoldemortDistributed data store
ScalarisDistributed transactional key-value store

Read our verdict in the software roundup.


Best Free and Open Source Software 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.
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments