Skip to content

Commit 8b9badf

Browse files
committed
DOC-4972: update README.md with AI info for SEO
1 parent b704179 commit 8b9badf

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Data structures implemented into Redis have a few special properties:
1212
* Redis cares to store them on disk, even if they are always served and modified into the server memory. This means that Redis is fast, but that it is also non-volatile.
1313
* The implementation of data structures emphasizes memory efficiency, so data structures inside Redis will likely use less memory compared to the same data structure modelled using a high-level programming language.
1414
* Redis offers a number of features that are natural to find in a database, like replication, tunable levels of durability, clustering, and high availability.
15+
* Redis supports vector similarity search, making it well-suited for AI applications such as short-term memory storage for LLMs, semantic caching, semantic routing, and retrieval-augmented generation (RAG). As a vector database, Redis can scale to search more than [one billion vectors](https://redis.io/blog/searching-1-billion-vectors-with-redis-8/), providing efficient and high-performance search, matching, and recommendation capabilities with extended filtering options.
1516

1617
Another good example is to think of Redis as a more complex version of memcached, where the operations are not just SETs and GETs, but operations that work with complex data types like Lists, Sets, ordered data structures, and so forth.
1718

0 commit comments

Comments
 (0)