Uses of Class
cloud.opencode.base.hash.bloom.CountingBloomFilter.Builder
Packages that use CountingBloomFilter.Builder
-
Uses of CountingBloomFilter.Builder in cloud.opencode.base.hash
Methods in cloud.opencode.base.hash that return CountingBloomFilter.BuilderModifier and TypeMethodDescriptionstatic <T> CountingBloomFilter.Builder<T> OpenHash.countingBloomFilter()Creates a counting bloom filter builder 创建计数布隆过滤器构建器static <T> CountingBloomFilter.Builder<T> OpenHash.countingBloomFilter(Funnel<? super T> funnel) Creates a counting bloom filter builder with funnel 使用funnel创建计数布隆过滤器构建器 -
Uses of CountingBloomFilter.Builder in cloud.opencode.base.hash.bloom
Methods in cloud.opencode.base.hash.bloom that return CountingBloomFilter.BuilderModifier and TypeMethodDescriptionstatic <T> CountingBloomFilter.Builder<T> Creates a builder 创建构建器CountingBloomFilter.Builder.counterBits(int bits) Sets the counter bits (default 4) 设置计数器位数(默认4)CountingBloomFilter.Builder.expectedInsertions(long expectedInsertions) Sets the expected insertions 设置预期插入量CountingBloomFilter.Builder.fpp(double fpp) Sets the false positive probability 设置误判率CountingBloomFilter.Builder.hashFunction(HashFunction hashFunction) Sets the hash function 设置哈希函数