Redis : An Introduction

redis

 

                In this article we will talk about Redis (REmote  DIctionary Server). Redis is an open source, in memory, key value store. It also referred as dictionary server as the key values are not only strings, but also hashes, sets, lists and sorted sets.

Redis looks similar to memcached but has differences between them.

            Feature               Redis             Memcached
In memory                  X                       X
Replication                  X
Partitioning                  X
Data Structures                  X
Authentication                  X                       X
Pub/Sub model                  X
Data persistence                  X
Virtual memory                  X

Feature Details:

In Memory: Redis stores the key values in primary memory for quick access of read writes.

Replication: Redis supports for master slave replication. The data access can be done from slave and the writes can be performed from master. The replication provides scalability and availability. As any one of the slave gets failed, the other slave provide data access.

Data Structures: Redis stores not only strings but also lists, sets, hashes and sorted sets.

Virtual memory: Redis uses RAM for in memory storage. But, during the shortage of RAM it uses virtual memory to keep the data.

Pub/Sub modal: Redis creates Publish and Subscribe channels where the Redis clients can subscribe to any channel to consume the data and any subscribed client to a channel can publish the data.

Data Persistence: Redis persist the in memory data to file system on regular intervals. During the failure of Redis node, the data can be restored from Redis Data file.

Redis has rich set of SDK support. You can find the list of client libraries here(http://redis.io/clients).

There are lot of high traffic sites already using Redis.

  • Stackoverflow
  • Criaglist
  • Rackspace
  • Plugin support for Magento
  • Github

The growth the of the Redis over the years is increasing. The stats for Redis and Memcached from DB-Engines is given below. This is how DB-Engines calculate the trend.

Redis Growth

Siva Janapati is an Architect with experience in building Cloud Native Microservices architectures, Reactive Systems, Large scale distributed systems, and Serverless Systems. Siva has hands-on in architecture, design, and implementation of scalable systems using Cloud, Java, Go lang, Apache Kafka, Apache Solr, Spring, Spring Boot, Lightbend reactive tech stack, APIGEE edge & on-premise and other open-source, proprietary technologies. Expertise working with and building RESTful, GraphQL APIs. He has successfully delivered multiple applications in retail, telco, and financial services domains. He manages the GitHub(https://github.com/2013techsmarts) where he put the source code of his work related to his blog posts.

Tagged with: ,
Posted in Performance, Redis
2 comments on “Redis : An Introduction
  1. Nice comparison with memcache @Siva, even if its quite short actually!

    It will be shared in our next RedisWeekly (http://redisweekly.com/)!

  2. itamarredislabs says:

    More of a comparison to Memcached rather than an intro to Redis, but still very nice. On the same topic: http://www.infoworld.com/article/2825890/application-development/why-redis-beats-memcached-for-caching.html

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Dzone.com
DZone

DZone MVB

Java Code Geeks
Java Code Geeks
OpenSourceForYou