Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions content/develop/data-types/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ implements the following data types:
- [List](#lists)
- [Set](#sets)
- [Sorted set](#sorted-sets)
- [Vector set](#vector-sets)
- [Stream](#streams)
- [Bitmap](#bitmaps)
- [Bitfield](#bitfields)
Expand Down Expand Up @@ -86,6 +87,14 @@ For more information, see:
* [Overview of Redis sorted sets]({{< relref "/develop/data-types/sorted-sets" >}})
* [Redis sorted set command reference]({{< relref "/commands/" >}}?group=sorted-set)

### Vector sets

[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" >}}).
For more information, see:

* [Overview of Redis vector sets]({{< relref "/develop/data-types/vector-sets" >}})
* [Redis vector set command reference]({{< relref "/commands/" >}}?group=vector_set)

### Streams

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