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
Go client for RedisBloom (https://github.com/RedisBloom/redisbloom), based on redigo.
@@ -20,10 +19,13 @@ $ go get github.com/RedisBloom/redisbloom-go
20
19
A simple test suite is provided, and can be run with:
21
20
22
21
```sh
23
-
$ RedisBloom_TEST_PASSWORD=""go test
22
+
$ go test
24
23
```
25
24
26
-
The tests expect a Redis server with the RedisBloom module loaded to be available at localhost:6379
25
+
The tests expect a Redis server with the RedisBloom module loaded to be available at localhost:6379. You can easily launch RedisBloom with Docker in the following manner:
26
+
```
27
+
docker run -d -p 6379:6379 --name redis-redisbloom redislabs/rebloom:latest
0 commit comments