Uses of Class
cloud.opencode.base.cache.protection.BloomFilter
Packages that use BloomFilter
-
Uses of BloomFilter in cloud.opencode.base.cache.protection
Methods in cloud.opencode.base.cache.protection that return BloomFilterModifier and TypeMethodDescriptionstatic <T> BloomFilter<T> BloomFilter.create(long expectedInsertions) Create bloom filter for expected insertions with 1% FPP 创建预期插入数的布隆过滤器(1% 误判率)static <T> BloomFilter<T> BloomFilter.create(long expectedInsertions, double fpp) Create bloom filter with custom FPP 创建自定义误判率的布隆过滤器Methods in cloud.opencode.base.cache.protection with parameters of type BloomFilterModifier and TypeMethodDescriptionvoidBloomFilter.merge(BloomFilter<T> other) Merge another bloom filter into this one 合并另一个布隆过滤器