2881099 / FreeRedis

🦄 FreeRedis is .NET40+ redis client. supports cluster, sentinel, master-slave, pub-sub, lua, pipeline, transaction, streams, client-side-caching, and pooling.
MIT License
913 stars 163 forks source link

类似Redisson的布隆过滤器高级功能 #93

Open yangbocheng opened 2 years ago

yangbocheng commented 2 years ago

希望能有便捷操作的布隆过滤器功能,类似 image

下面这个库的作者只支持了csredis,但是没有支持freeredis, 是否能官方支持该功能, https://github.com/vla/BloomFilter.NetCore

2881099 commented 2 years ago

https://github.com/vla/BloomFilter.NetCore/pull/5

关注跟进一下吧,其实 FreeRedis 已经提供了布隆过滤器方法。

代码实现:https://github.com/2881099/FreeRedis/tree/master/src/FreeRedis/RedisClient/Modules

redisbloom文档:https://developer.redis.com/howtos/redisbloom/

yangbocheng commented 2 years ago

谢谢解答疑惑!。 之前看到md文档介绍中有布隆说明,但是全局搜索bloom时没有找到bloom的关键字。以为还有自行用SetBit,GetBit实现过滤器。 原来大佬早就提供好了好几种过滤器的方法。 大佬yyds