redis.io Open in urlscan Pro
45.60.129.1  Public Scan

URL: https://redis.io/
Submission: On July 20 via manual from US — Scanned from DE

Form analysis 2 forms found in the DOM

<form class="redis-cli" typewriter="">
  <pre tabindex="0">redis&gt; PING
"PONG"
redis&gt; HSET user:1 name antirez vocation artist
(integer) 2
redis&gt; SET e 2.71
"OK"
redis&gt; INCRBYFLOAT e 0.43
"3.14"
redis&gt; RENAME e pi
"OK"
</pre>
  <div class="prompt" style=""><span>redis&gt; </span><input name="prompt" type="text" autocomplete="off" spellcheck="false"></div>
</form>

<form id="search-form" class="search-form">
  <label class="search-magnifier-label" for="search-input" id="search-label">
    <svg width="20" height="20" class="search-icon" viewBox="0 0 20 20">
      <path d="M14.386 14.386l4.0877 4.0877-4.0877-4.0877c-2.9418 2.9419-7.7115 2.9419-10.6533 0-2.9419-2.9418-2.9419-7.7115 0-10.6533 2.9418-2.9419 7.7115-2.9419 10.6533 0 2.9419 2.9418 2.9419 7.7115 0 10.6533z" stroke="currentColor" fill="none"
        fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round"></path>
    </svg>
  </label>
  <div class="search-loading-indicator">
    <svg viewBox="0 0 38 38" stroke="currentColor" stroke-opacity=".5">
      <g fill="none" fill-rule="evenodd">
        <g transform="translate(1 1)" stroke-width="2">
          <circle stroke-opacity=".3" cx="18" cy="18" r="18"></circle>
          <path d="M36 18c0-9.94-8.06-18-18-18">
            <animateTransform attributeName="transform" type="rotate" from="0 18 18" to="360 18 18" dur="1s" repeatCount="indefinite"></animateTransform>
          </path>
        </g>
      </g>
    </svg>
  </div>
  <input class="search-input" aria-autocomplete="both" aria-labelledby="search-label" id="search-input" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" placeholder="Search…" maxlength="64" type="search" value="">
  <button type="reset" title="Clear the query" class="search-reset" aria-label="Clear the query" hidden="">
    <svg width="20" height="20" viewBox="0 0 20 20">
      <path d="M10 10l5.09-5.09L10 10l5.09 5.09L10 10zm0 0L4.91 4.91 10 10l-5.09 5.09L10 10z" stroke="currentColor" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round"></path>
    </svg>
  </button>
</form>

Text Content

Get started Get started Docs
Redis Get started Data types Redis CLI Redis clients Persistence Scaling
Redis Stack Get started Stack clients RedisInsight JSON Search Probabilistic
Docs Redis Get started Data types Redis CLI Redis clients Persistence Scaling

--------------------------------------------------------------------------------

Redis Stack Get started Stack clients RedisInsight JSON Search Probabilistic

--------------------------------------------------------------------------------

Commands Commands Resources Clients Libraries Tools Modules Resources Clients
Libraries Tools Modules Community Community Support Support
Quick search&hellip… Search… ⌘ K Download Try Redis Cloud
Open main menu


REDIS

The open source, in-memory data store used by millions of developers as a
database, cache, streaming engine, and message broker.

Get Started Read the docs

redis> PING
"PONG"
redis> HSET user:1 name antirez vocation artist
(integer) 2
redis> SET e 2.71
"OK"
redis> INCRBYFLOAT e 0.43
"3.14"
redis> RENAME e pi
"OK"


redis>


A VIBRANT, OPEN SOURCE DATABASE

Voted the most-loved database for 5 years running, Redis is at the center of an
engaged community of developers, architects, and open source contributors.

 * 4B+ Docker pulls
 * 50K+ Github stars
 * 50+ Supported programing languages


CORE CAPABILITIES


 * IN-MEMORY DATA STRUCTURES
   
   Well-known as a "data structure server", with support for strings, hashes,
   lists, sets, sorted sets, streams, and more.
   
   Learn more →


 * PROGRAMMABILITY
   
   Server-side scripting with Lua and server-side stored procedures with Redis
   Functions.
   
   Learn more →


 * EXTENSIBILITY
   
   A module API for building custom extensions to Redis in C, C++, and Rust.
   
   Learn more →


 * PERSISTENCE
   
   Keeps the dataset in memory for fast access, but can also persist all writes
   to permanent storage to survive reboots and system failures.
   
   Learn more →


 * CLUSTERING
   
   Horizontal scalability with hash-based sharding, scaling to millions of nodes
   with automatic re-partitioning when growing the cluster.
   
   Learn more →


 * HIGH AVAILABILITY
   
   Replication with automatic failover for both standalone and clustered
   deployments.
   
   Learn more →


USE CASES


 * REAL-TIME DATA STORE
   
   Redis' versatile in-memory data structures enable building data
   infrastructure for real-time applications that require low latency and
   high-throughput.


 * CACHING & SESSION STORAGE
   
   Redis' speed makes it ideal for caching database queries, complex
   computations, API calls, and session state.


 * STREAMING & MESSAGING
   
   The stream data type enables high-rate data ingestion, messaging, event
   sourcing, and notifications.


REDIS STACK

Redis Stack extends Redis with modern data models and processing engines to
provide a complete developer experience. Download the source, install using your
favorite package manager, or spin it up for free in the cloud.

 * Canvas 1Layer 1
   
   Redis Stack Server lets you build applications with searchable JSON and time
   series data models, and extended probabilistic data structures.

 * Get productive quickly with the Redis Stack object mapping and client
   libraries.

 * Visualize and optimize your Redis data with RedisInsight.

Download Stack Learn more


REDIS STACK USE CASES


 * SEARCHABLE REDIS
   
   Index and query Redis data structures and data models; run complex
   aggregations and full-text search on your Redis data.


 * DOCUMENT DATABASE
   
   Model domain entirely in Redis, and query your JSON data efficiently without
   ever having to use a cache.


 * TELEMETRY
   
   Ingest continuous readings from devices in the field, storing as time series
   data or analyzing and deduplicating with probabilistic data structures.


 * IDENTITY AND RESOURCE MANAGEMENT
   
   Define digital resources and ACLs as a graph, and compute permissions in
   real-time with a single Cypher query.


 * VECTOR SIMILARITY SEARCH
   
   Query vector embeddings to power images search, recommendation engines, and
   natural language text processing.


 * FRAUD DETECTION
   
   All the tools to detect fraud in real time, probabilistic queries, vector
   search, and even processing using streams.


GET STARTED


 * PREPARATION
   
   Install & launch Redis → Learn the Redis CLI →


 * COUNTDOWN
   
   Experiment with Redis data structures → Explore Redis clients →


 * LIFTOFF
   
   See Redis programming patterns → Join to the community →

This is a community website sponsored by Redis Ltd. © 2023. Redis and the cube
logo are registered trademarks of Redis Ltd. Terms of use & privacy policy.


Cancel
Powered by Redis Stack