Re: [collections] Does WrappedBloomFilterTest make sense?

2024-10-06 Thread Claude Warren
Minor difference in what the time is. In the Kip it is an expires time and the filter is created with a TTL value. The copy is also slightly different as the expires time is reset. On Sat, Oct 5, 2024 at 8:53 PM Gary Gregory wrote: > On Sat, Oct 5, 2024 at 11:26 AM Claude Warren wrote: > > >

Re: [collections] BloomFilterExtractor.flatten()

2024-10-06 Thread Gary Gregory
Thank you Claude, the git master code now throws instead of returning null. We can delay MultidimensionalBloomFilter unless introducing it later would break binary compatibility. How beneficial would introducing this interface for users? Gary On Sun, Oct 6, 2024, 10:58 AM Claude Warren wrote:

[validator] Java 23 failures and the Narrow No-Break Space (NNBSP)

2024-10-06 Thread Gary D. Gregory
Hi All, The build fails on Java 23 because of at least one behavior change when running on Java 23: When dealing with strings like "12:34 PM", the space is now expected to be a Narrow No-Break Space (NNBSP, U+202F) and not a "traditional" space (U+0020). Please have a look at the code and help

Re: [collections] BloomFilterExtractor.flatten()

2024-10-06 Thread Claude Warren
This is starting tondelve into the realm of multidimensional bloom filters. I think throwing an exception on a null or zero length array is acceptable. We could define an interface MultidimensionalBloomFilter that could be implemented by any Bloom filter that comprises multiple filters and givr i