@@ -58,7 +58,7 @@ docker run --rm redis/vector-db-benchmark:latest run.py --describe datasets
58
58
# Basic Redis benchmark (requires local Redis)
59
59
docker run --rm -v $( pwd) /results:/app/results --network=host \
60
60
redis/vector-db-benchmark:latest \
61
- run.py --host localhost --engines redis-default-simple --dataset random-100
61
+ run.py --host localhost --engines redis-default-simple --datasets random-100
62
62
```
63
63
64
64
## Features
@@ -78,12 +78,12 @@ docker run --rm -v $(pwd)/results:/app/results --network=host \
78
78
### Redis 8.2 with RediSearch
79
79
``` bash
80
80
# Start Redis 8.2 with built-in vector support
81
- docker run -d --name redis-test -p 6379:6379 redis:8.2-rc1- bookworm
81
+ docker run -d --name redis-test -p 6379:6379 redis:8.2-bookworm
82
82
83
83
# Run benchmark
84
84
docker run --rm -v $( pwd) /results:/app/results --network=host \
85
85
redis/vector-db-benchmark:latest \
86
- run.py --host localhost --engines redis-default-simple --dataset glove-25-angular
86
+ run.py --host localhost --engines redis-default-simple --datasets glove-25-angular
87
87
```
88
88
89
89
@@ -103,18 +103,18 @@ docker run --rm redis/vector-db-benchmark:latest run.py --describe engines
103
103
# Quick test with small dataset
104
104
docker run --rm -v $( pwd) /results:/app/results --network=host \
105
105
redis/vector-db-benchmark:latest \
106
- run.py --host localhost --engines redis-default-simple --dataset random-100
106
+ run.py --host localhost --engines redis-default-simple --datasets random-100
107
107
108
108
# Comprehensive benchmark with multiple configurations
109
109
docker run --rm -v $( pwd) /results:/app/results --network=host \
110
110
redis/vector-db-benchmark:latest \
111
- run.py --host localhost --engines " *redis*" --dataset glove-25-angular
111
+ run.py --host localhost --engines " *redis*" --datasets glove-25-angular
112
112
113
113
# With Redis authentication
114
114
docker run --rm -v $( pwd) /results:/app/results --network=host \
115
115
-e REDIS_AUTH=mypassword -e REDIS_USER=myuser \
116
116
redis/vector-db-benchmark:latest \
117
- run.py --host localhost --engines redis-default-simple --dataset random-100
117
+ run.py --host localhost --engines redis-default-simple --datasets random-100
118
118
```
119
119
120
120
### Results Analysis
0 commit comments