Skip to content

Commit f31b235

Browse files
update README.md (#791)
update README.md Signed-off-by: KarthikSubbarao <karthikrs2021@gmail.com>
1 parent ffdec7e commit f31b235

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
# valkey-search
22

3-
**valkey-search** (BSD-3-Clause), provided as a Valkey module, is a high-performance Vector Similarity Search engine optimized for AI-driven workloads. It delivers single-digit millisecond latency and high QPS, capable of handling billions of vectors with over 99% recall.
3+
**Valkey-Search** (BSD-3-Clause), provided as a Valkey module, is a high-performance Search engine
4+
optimized for AI-driven / Search / Analytics / Recommendation System related workloads. It delivers single-digit millisecond
5+
latency and high QPS, capable of handling billions of vectors with over 99% recall as part of vector searches. It also provides
6+
support for hybrid / pure non vector workloads including Numeric, Tag, and Full-text searches.
47

5-
valkey-search allows users to create indexes and perform similarity searches, incorporating complex filters. It supports Approximate Nearest Neighbor (ANN) search with HNSW and exact matching using K-Nearest Neighbors (KNN). Users can index data using either **Valkey Hash** or **[Valkey-JSON](https://github.com/valkey-io/valkey-json)** data types.
6-
7-
While valkey-search currently focuses on Vector Search, its goal is to extend Valkey into a full-fledged search engine, supporting Full Text Search and additional indexing options.
8+
Valkey-Search allows users to create indexes and perform searches, incorporating complex filters.
9+
Users can index data using either **[Valkey Hash](hashes.md)** or **[Valkey-JSON](valkey-json.md)** data types.
10+
The vector queries support Approximate Nearest Neighbor (ANN) search with HNSW and exact matching using K-Nearest Neighbors (KNN).
811

912
## Supported Commands
1013

@@ -14,6 +17,7 @@ FT.DROPINDEX
1417
FT.INFO
1518
FT._LIST
1619
FT.SEARCH
20+
FT.AGGREGATE
1721
```
1822

1923
For a detailed description of the supported commands and configuration options, see the [Command Reference](https://valkey.io/commands/#search).
@@ -36,7 +40,7 @@ valkey-search achieves high performance by storing vectors in-memory and applyin
3640

3741
## Hybrid Queries
3842

39-
valkey-search supports hybrid queries, combining Vector Similarity Search with filtering on indexed fields, such as **Numeric** and **Tag indexes**.
43+
valkey-search supports hybrid queries, combining Vector Similarity Search with filtering on indexed fields, such as **Numeric**, **Tag**, and **Text indexes**.
4044

4145
There are two primary approaches to hybrid queries:
4246

0 commit comments

Comments
 (0)