What Is Redis?
What Is Redis?
What Is Redis?
Fast, open source in-memory data store for use as a database, cache, message broker, and queue.
Redis, which stands for Remote Dictionary Server, is a fast, open source, in-memory, key-value data store. The project
started when Salvatore Sanfilippo, the original developer of Redis, wanted to improve the scalability of his Italian startup.
From there, he developed Redis, which is now used as a database, cache, message broker, and queue.
Redis delivers sub-millisecond response times, enabling millions of requests per second for real-time applications in
industries like gaming, ad-tech, financial services, healthcare, and IoT. Today, Redis is one of the most popular open source
engines today, named the "Most Loved" database by Stack Overflow for five consecutive years. Because of its fast
performance, Redis is a popular choice for caching, session management, gaming, leaderboards, real-time analytics,
geospatial, ride-hailing, chat/messaging, media streaming, and pub/sub apps.
AWS offers two fully managed services to run Redis. Amazon MemoryDB for Redis is a Redis-compatible, durable, in-
memory database service that delivers ultra-fast performance. Amazon ElastiCache for Redis is a fully managed caching
service that accelerates data access from primary databases and data stores with microsecond latency. Furthermore,
ElastiCache also offers support for Memcached, another popular open source caching engine.
To learn more about turbocharging your applications with Amazon ElastiCache for Redis, check out this online tech talk.
Benefits of Redis
Performance
All Redis data resides in memory, which enables low latency and high throughput data access. Unlike traditional databases,
In-memory data stores don’t require a trip to disk, reducing engine latency to microseconds. Because of this, in-memory data
stores can support an order of magnitude more operations and faster response times. The result is blazing-fast performance
with average read and write operations taking less than a millisecond and support for millions of operations per second.
Redis was not built to be a durable and consistent database. If you need a durable, Redis-compatible database,
consider Amazon MemoryDB for Redis. Because MemoryDB uses a durable transactional log that stores data across
multiple Availability Zones (AZs), you can use it as your primary database. MemoryDB is purpose-built to enable
developers to use the Redis API without worrying about managing a separate cache, database, or the underlying
infrastructure.
Open Source
Redis is an open source project supported by a vibrant community, including AWS. There’s no vendor or technology lock in
as Redis is open standards based, supports open data formats, and features a rich set of clients.
Gaming leaderboards
Redis is a popular choice among game developers looking to build real-time leaderboards. Simply use the Redis Sorted Set
data structure, which provides uniqueness of elements while maintaining the list sorted by users' scores. Creating a real-time
ranked list is as easy as updating a user's score each time it changes. You can also use Sorted Sets to handle time series data
by using timestamps as the score.
Session store
Redis as an in-memory data store with high availability and persistence is a popular choice among application developers to
store and manage session data for internet-scale applications. Redis provides the sub-millisecond latency, scale, and
resiliency required to manage session data such as user profiles, credentials, session state, and user-specific personalization.
Rich media streaming
Redis offers a fast, in-memory data store to power live streaming use cases. Redis can be used to store metadata about users'
profiles and viewing histories, authentication information/tokens for millions of users, and manifest files to enable CDNs to
stream videos to millions of mobile and desktop users at a time.
Geospatial
Redis offers purpose-built in-memory data structures and operators to manage real-time geospatial data at scale and speed.
Commands such as GEOADD, GEODIST, GEORADIUS, and GEORADIUSBYMEMBER to store, process, and analyze
geospatial data in real-time make geospatial easy and fast with Redis. You can use Redis to add location-based features such
as drive time, drive distance, and points of interest to your applications.
Machine Learning
Modern data-driven applications require machine learning to quickly process a massive volume, variety, and velocity of data
and automate decision making. For use cases like fraud detection in gaming and financial services, real-time bidding in ad-
tech, and matchmaking in dating and ride sharing, the ability to process live data and make decisions within tens of
milliseconds is of utmost importance. Redis gives you a fast in-memory data store to build, train, and deploy machine
learning models quickly.
Real-time analytics
Redis can be used with streaming solutions such as Apache Kafka and Amazon Kinesis as an in-memory data store to ingest,
process, and analyze real-time data with sub-millisecond latency. Redis is an ideal choice for real-time analytics use cases
such as social media analytics, ad targeting, personalization, and IoT.
From <https://aws.amazon.com/redis/>