简体   繁体   中英

Best way to Persist Redis Bloom filter data?

I am working on the Node.js application with Redis, for this application we have a mobile number and username existence check that I want to implement with the bloom filter. I came across https://oss.redislabs.com/redisbloom and I have used it in my application but worried about how would I persist my data if Redis shutdown my data would be lost. There is command BF.SCANDUMP and BF.LOADCHUNK but BF.SCANDUMP gives data in the unreadable form that may be in hexadecimal format.

I appreciate any help on this. Thanks.

In case you want to keep both persistent as well as non-persistent data in Redis, the recommended approach is to use a separate Redis server for each for of data

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM