You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- **Datatype limitations**: SVS-VAMANA only supports `float16` and `float32` datatypes (not `bfloat16` or `float64`).
358
358
- **Compression compatibility**: The `reduce` parameter is only valid with LeanVec compression types (`LeanVec4x8` or `LeanVec8x8`).
359
359
- **Platform considerations**: Intel's proprietary LVQ and LeanVec optimizations are not available in Redis Open Source. On non-Intel platforms and Redis Open Source, SVS-VAMANA with compression falls back to basic 8-bit scalar quantization.
@@ -511,7 +511,7 @@ Migration Considerations
511
511
- Tune ``ef_runtime`` at query time to balance speed vs accuracy (no index rebuild needed)
512
512
513
513
**From HNSW to SVS-VAMANA:**
514
-
- Requires Redis >= 8.2 with RediSearch >= 2.8.10
514
+
- Requires Redis >= 8.2 with Redis Search >= 2.8.10
515
515
- Change datatype to float16 or float32 if using others
Copy file name to clipboardExpand all lines: docs/user_guide/09_svs_vamana.ipynb
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@
13
13
"\n",
14
14
"Before you begin, ensure you have:\n",
15
15
"- Installed RedisVL: `pip install redisvl`\n",
16
-
"- A running Redis instance with Redis >= 8.2.0 and RediSearch >= 2.8.10 ([Redis 8+](https://redis.io/downloads/) or [Redis Cloud](https://redis.io/cloud))\n",
16
+
"- A running Redis instance with Redis >= 8.2.0 and Redis Search >= 2.8.10 ([Redis 8+](https://redis.io/downloads/) or [Redis Cloud](https://redis.io/cloud))\n",
17
17
"\n",
18
18
"> **Note:** SVS-VAMANA only supports FLOAT16 and FLOAT32 datatypes.\n",
Copy file name to clipboardExpand all lines: docs/user_guide/installation.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -120,26 +120,26 @@ $ pre-commit run --all-files
120
120
121
121
## Installing Redis
122
122
123
-
RedisVL requires a distribution of Redis that supports the [Search and Query](https://redis.com/modules/redis-search/)capability. There are several options:
123
+
RedisVL requires Redis with [Redis Search](https://redis.io/docs/latest/develop/ai/search-and-query/)available. There are several options:
124
124
125
125
1.[Redis Cloud](https://redis.io/cloud), a fully managed cloud offering with a free tier
126
126
2.[Redis 8+ (Docker)](https://redis.io/downloads/), for local development and testing
127
127
3.[Redis Enterprise](https://redis.com/redis-enterprise/), a commercial self-hosted option
128
128
129
129
### Redis Cloud
130
130
131
-
Redis Cloud is the easiest way to get started with RedisVL. You can sign up for a free account [here](https://redis.io/cloud). Make sure to have the `Search and Query`
132
-
capability enabled when creating your database.
131
+
Redis Cloud is the easiest way to get started with RedisVL. You can sign up for a free account [here](https://redis.io/cloud). Make sure to have `Redis Search`
132
+
enabled when creating your database.
133
133
134
134
### Redis 8+ (local development)
135
135
136
136
For local development and testing, we recommend running Redis 8+ in a Docker container:
137
137
138
138
```bash
139
-
docker run -d --name redis -p 6379:6379 redis:latest
139
+
docker run -d --name redis -p 6379:6379 redis:8.4
140
140
```
141
141
142
-
Redis 8 includes built-in vector search capabilities.
142
+
Redis 8 includes Redis Search and built-in vector search capabilities.
0 commit comments