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
hi, I use RedisBloom module in redis , the RdbParser now can not parse the bloom filter which in rdb file , is there any plan to support RedisBloom Module
My environment info below:
redis version: 6.2.5
RedisBloom version: 2.2.6
The text was updated successfully, but these errors were encountered:
Unfortunately, there are no plans to support any Redis modules.
Currently, java-rdb-parser raises an exception when it encounters a module in an RDB file. Depending on how modules are serialized, I imagine we could change the library's behavior to either (a) skip over the module data, or (b) return the module's data as a ReadableByteChannel (which would allow users to write their own custom module parsing code). I'd certainly be open to a pull request that does this.
Actually parsing Redis module data seems like a much more substantial undertaking, and I'm not sure it makes sense for all modules (RedisGears, RedisSearch, etc..). To be frank, I don't have the time or motivation to do it for all modules.
hi, I use RedisBloom module in redis , the RdbParser now can not parse the bloom filter which in rdb file , is there any plan to support RedisBloom Module
My environment info below:
redis version: 6.2.5
RedisBloom version: 2.2.6
The text was updated successfully, but these errors were encountered: