Skip to content

Commit ba07aaa

Browse files
authored
DEV: add vector set to the data type landing page (#1461)
1 parent 5f5c1a2 commit ba07aaa

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

content/develop/data-types/_index.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ implements the following data types:
3333
- [List](#lists)
3434
- [Set](#sets)
3535
- [Sorted set](#sorted-sets)
36+
- [Vector set](#vector-sets)
3637
- [Stream](#streams)
3738
- [Bitmap](#bitmaps)
3839
- [Bitfield](#bitfields)
@@ -86,6 +87,14 @@ For more information, see:
8687
* [Overview of Redis sorted sets]({{< relref "/develop/data-types/sorted-sets" >}})
8788
* [Redis sorted set command reference]({{< relref "/commands/" >}}?group=sorted-set)
8889

90+
### Vector sets
91+
92+
[Redis vector sets]({{< relref "/develop/data-types/vector-sets" >}}) are a specialized data type designed for managing high-dimensional vector data, enabling fast and efficient vector similarity search within Redis. Vector sets are optimized for use cases involving machine learning, recommendation systems, and semantic search, where each vector represents a data point in multi-dimensional space. Vector sets supports the [HNSW](https://en.wikipedia.org/wiki/Hierarchical_navigable_small_world) (hierarchical navigable small world) algorithm, allowing you to store, index, and query vectors based on the cosine similarity metric. With vector sets, Redis provides native support for hybrid search, combining vector similarity with structured [filters]({{< relref "/develop/data-types/vector-sets/filtered-search" >}}).
93+
For more information, see:
94+
95+
* [Overview of Redis vector sets]({{< relref "/develop/data-types/vector-sets" >}})
96+
* [Redis vector set command reference]({{< relref "/commands/" >}}?group=vector_set)
97+
8998
### Streams
9099

91100
A [Redis stream]({{< relref "/develop/data-types/streams" >}}) is a data structure that acts like an append-only log.

0 commit comments

Comments
 (0)