Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 377 Bytes

README.md

File metadata and controls

20 lines (12 loc) · 377 Bytes

Run test

for startup redis:

docker run --name recorder-redis -p 6379:6379 -d redis:alpine

for starting redis with password:

docker run \
    -p 6379:6379 \
    --name redis \
    -d redis:alpine redis-server --appendonly yes  --requirepass "test123" 

run test:

v -enable-globals test .

run test with logs:

v -stats -enable-globals test .