@@ -58,7 +58,7 @@ docker run --rm redis/vector-db-benchmark:latest run.py --describe datasets
5858# Basic Redis benchmark (requires local Redis)
5959docker run --rm -v $( pwd) /results:/app/results --network=host \
6060 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
6262```
6363
6464## Features
@@ -78,12 +78,12 @@ docker run --rm -v $(pwd)/results:/app/results --network=host \
7878### Redis 8.2 with RediSearch
7979``` bash
8080# 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
8282
8383# Run benchmark
8484docker run --rm -v $( pwd) /results:/app/results --network=host \
8585 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
8787```
8888
8989
@@ -103,18 +103,18 @@ docker run --rm redis/vector-db-benchmark:latest run.py --describe engines
103103# Quick test with small dataset
104104docker run --rm -v $( pwd) /results:/app/results --network=host \
105105 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
107107
108108# Comprehensive benchmark with multiple configurations
109109docker run --rm -v $( pwd) /results:/app/results --network=host \
110110 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
112112
113113# With Redis authentication
114114docker run --rm -v $( pwd) /results:/app/results --network=host \
115115 -e REDIS_AUTH=mypassword -e REDIS_USER=myuser \
116116 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
118118```
119119
120120### Results Analysis
0 commit comments