redis.io
Open in
urlscan Pro
45.60.123.1
Public Scan
Submitted URL: http://redis.com/
Effective URL: https://redis.io/
Submission: On June 24 via api from US — Scanned from DE
Effective URL: https://redis.io/
Submission: On June 24 via api from US — Scanned from DE
Form analysis
1 forms found in the DOMGET https://redis.io
<form id="searchForm" action="https://redis.io" method="get">
<div class="searchbox">
<label for="searchInput">Search:</label>
<input type="text" name="s" placeholder="Search" id="search-field" data-header="search-field">
<button type="submit"><img src="/wp-content/themes/redislabs-glide/assets/src/images/search-icon.svg"></button>
</div>
</form>
Text Content
Back * Products Products * Community EditionIn-memory database for caching and streaming * Redis CloudFully managed service integrated with Google Cloud, Azure, and AWS for production-ready apps * Redis SoftwareSelf-managed software with additional compliance, reliability, and resiliency for enterprise scaling Tools * Redis Insight * Clients & connectors Key features * Search & query * JSON * Active-Active * Auto Tiering * Vector search * Data integration See how it works * Visit Demo Center Get Redis * Downloads * Solutions Use cases * Caching * Deduplication * Fast data ingest * Feature stores * Session management * Vector search Industries * Financial services * Gaming * Healthcare * Retail Customer case studies * Read stories Optimizing Pokémon GO with a Redis cluster * See more * Support Expert services * Support * Professional services * Company About * Mission & values * Leadership * Careers * News * Partners * Docs Learn * Docs * Commands * Quick starts * Tutorials * University * Knowledge base * Resources * Blog Connect * Community * Events & webinars Vector searchLearn what you need to go from beginner to GenAI expert * Get started * Pricing Try Redis Book a meeting Login Login Book a meeting Try Redis Search Search: SEE HOW FAST FEELS Get the world’s fastest in-memory database from the ones who built it. Start for freeTalk to sales WORK REALLY SIMPLY IN REAL TIME COMMUNITY EDITION DownloadView docs REDIS CLOUD Learn moreView docs REDIS SOFTWARE Learn moreView docs Visit demo center -------------------------------------------------------------------------------- SPEND MORE TIME BUILDING CACHE Build better experiences that grow with you—with accessible, enterprise-grade caching built by the devs who brought you open source Redis. # Create a new session and store it as a JSON document > JSON.SET session:12345 . ‘{“user_id”: 1001, “login_time”: “2024-02-27T10:00:00Z”, “data”: {“last_page_visited”: “/home”, “preferences”: {“theme”: “dark”}}}’ “OK” # Fetch the entire session > JSON.GET session:12345 “{\”user_id\”:1001,\”login_time\”:\”2024-02-27T10:00:00Z\”,\”data\”:{\”last_page_visited\”:\”/home\”,\”preferences\”:{\”theme\”:\”dark\”}}}” # Fetch a specific part of the session > JSON.GET session:12345 .data.preferences “{\”theme\”:\”dark\”}” # Update a field within the session > JSON.SET session:12345 .data.last_page_visited ‘”/settings”‘ “OK” # Delete a field within the session > JSON.DEL session:12345 .data.preferences (integer) 1 # Delete a session > DEL session:12345 (integer) 1 Learn more VECTOR The best results are the results you were searching for. Make your AI app smarter and faster with streamlined document search, recommendation systems, semantic caching, and Retrieval Augmented Generation (RAG). # Create a vector index using the HNSW algorithm, 768 dimension length, and inner product distance metric > FT.CREATE idx-videos ON HASH PREFIX 1 video: SCHEMA content_vector VECTOR HNSW 6 TYPE FLOAT32 DIM 768 DISTANCE_METRIC IP content TEXT metadata TEXT # Add a video vector with metadata > HSET video:0 content_vector “\xa4q\t=\xc1\xdes\xbdZ$<\xbd\xd5\xc1\x99<b\xf0\xf2<x[…\xf8<” content “SUMMARY:\nThe video discusses the limitations of MySQL at scale and introduces Redis Enterprise” metadata “{\”id\”:\”FQzlq91g7mg\”,\”link\”:\”https://www.youtube.com/watch?v=FQzlq91g7mg\”,\”title\”:\”Redis + MySQL in 60 Seconds\”}” (integer) 3 # Search for videos using a similar vector and the K-nearest neighbors algorithm > FT.SEARCH idx-videos “* => [KNN 3 @content_vector $vector AS vector_score]” RETURN 3 metadata content vector_score SORTBY vector_score LIMIT 0 3 PARAMS 2 vector “\b[\xb7;\x81\x12\x9c\xbc\xc6!…\xfe<” DIALECT 2 Learn more DATABASE Use Redis as your NoSQL database to build fast, reliable apps that make five-9s uptime look easy. # Create an index on “users:*” > FT.CREATE user-idx ON JSON PREFIX 1 users: SCHEMA $.user.name AS name TEXT $.user.hobbies AS hobbies TAG $.user.age as age NUMERIC “OK” # Add a JSON document to be indexed > JSON.SET users:1 $ ‘{“user”:{“name”:”John Smith”,”hobbies”:[“sports”,”computers”],”age”:23}}’ “OK” # Search all user documents with name “John” > FT.SEARCH user-idx ‘@name:(John)’ 1) “1” 2) “users:1” 3) 1) “$” 2) “{\”user\”:{\”name\”:\”John Smith\”,\”hobbies\”:[\”sports\”,\”computers\”],\”age\”:23}}” # Search for users named “John” with hobbies “sports” or “writing” and age between 20 and 30 > FT.SEARCH user-idx ‘@name:(John) @hobbies:{sports | writing} @age:[20 30]’ 1) “1” 2) “users:1” 3) 1) “$” 2) “{\”user\”:{\”name\”:\”John Smith\”,\”hobbies\”:[\”sports\”,\”computers\”],\”age\”:23}}” Learn more # Create a new session and store it as a JSON document > JSON.SET session:12345 . ‘{“user_id”: 1001, “login_time”: “2024-02-27T10:00:00Z”, “data”: {“last_page_visited”: “/home”, “preferences”: {“theme”: “dark”}}}’ “OK” # Fetch the entire session > JSON.GET session:12345 “{\”user_id\”:1001,\”login_time\”:\”2024-02-27T10:00:00Z\”,\”data\”:{\”last_page_visited\”:\”/home\”,\”preferences\”:{\”theme\”:\”dark\”}}}” # Fetch a specific part of the session > JSON.GET session:12345 .data.preferences “{\”theme\”:\”dark\”}” # Update a field within the session > JSON.SET session:12345 .data.last_page_visited ‘”/settings”‘ “OK” # Delete a field within the session > JSON.DEL session:12345 .data.preferences (integer) 1 # Delete a session > DEL session:12345 (integer) 1 -------------------------------------------------------------------------------- WORK SEAMLESSLY IN YOUR STACK -------------------------------------------------------------------------------- FIND WHAT YOU NEED TO GET STARTED QUICK START REDIS AS AN IN-MEMORY DATA STRUCTURE STORE Get started QUICK START REDIS AS A DOCUMENT DATABASE Get started QUICK START REDIS AS A VECTOR DATABASE Get started CHEAT SHEET REDIS COMMANDS CHEAT SHEET Learn more TUTORIAL PERFORM VECTOR SEARCH USING REDIS IN NODEJS Learn how See all resources -------------------------------------------------------------------------------- OUR CLOUD CUSTOMERS BUILD APPS—FAST See how Redis Cloud can improve the way you operate and scale. 99.999%Availability 75%75% less costly than managing relational DBs 350%ROI over three years $1MEstimated savings from improved efficiency -------------------------------------------------------------------------------- AND THEY TELL GOOD STORIES CUSTOMER STORIES FINANCE Flowdesk implements Redis for real-time analytics, achieving 10x faster query performance and 50% reduction in infrastructure costs. Learn more CUSTOMER STORIES SOFTWARE Docugami uses Redis to easily store, search, and update vector embeddings at scale. Learn more CUSTOMER STORIES SECURITY Ekata uses Auto Tiering, which requires 70% less of the expensive DRAM storage they needed before Redis. Learn more CUSTOMER STORIES MOBILE GAMING Redis allows Niantic to use less overhead to balance their server load and offer great player experiences. Learn more CUSTOMER STORIES RETAIL Ulta implements Redis to enhance customer experience, achieving 50% reduction in response time and scaling to handle more than 300,000 transactions per second. Learn more CUSTOMER STORIES HOSPITALITY iFood boosts performance and scalability with Redis, achieving a 50% reduction in latency and a 3x increase in throughput for its food delivery platform. Learn more See all customer stories -------------------------------------------------------------------------------- NEED HELP? GET ANSWERS * Docs * Tutorials * Demo center * Pricing * Contact us * Trust * Terms of use * Privacy policy * Cloud * Software * Pricing * Support * About us * Careers * Contact us * Legal notices Select Language: Language English Español Français Deutsch Português Select Language: Language English Español Français Deutsch Português * Trust * Terms of use * Privacy policy