RedisBloom filter for stream of data

Hi there,

I’m using Redis Bloom filter to get rid of duplicit elements in stream of data. I’m only interested in duplicit elements within sliding window of particular size (say 1hour).
As the stream of data is infinite I have problem with reaching the capacity of the Bloom filter sooner or later.
I was thrilled when I saw Age-Partitioned Bloom filter in the list of pull requests however it’s been sitting there for a while.
Does anyone else facing a similar issue? Is there some workaround how to solve my issue for now?
Thanks a lot.

Best regards,

Tomas