docker run -p 6379:6379 --name redis-redisbloom redislabs/rebloom:latest
redis-cli
docker exec -it redis-redisbloom bash # redis-cli # 127.0.0.1:6379>
# 127.0.0.1:6379> BF.ADD newFilter foo (integer) 1
# 127.0.0.1:6379> BF.EXISTS newFilter foo (integer) 1
127.0.0.1:6379> config set requirepass xxxxx OK 127.0.0.1:6379> config set notify-keyspace-events xE (error) NOAUTH Authentication required. 127.0.0.1:6379> auth xxxxx OK 127.0.0.1:6379> config set notify-keyspace-events xE OK 127.0.0.1:6379>
https://blog.csdn.net/qq_29645505/article/details/87895303html
https://github.com/RedisBloom/RedisBloom#launch-redisbloom-with-dockerlinux
原文出處:https://www.cnblogs.com/chenshuquan/p/11696961.htmlgithub