<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
本文基於Spring Boot 2.6.6、redisson 3.16.0簡單分析Redisson布隆過濾器的使用。
布隆過濾器是一個非常長的二進位制向量和一系列隨機雜湊函數的組合,可用於檢索一個元素是否存在;
使用場景如下:
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> <exclusions> <exclusion> <groupId>io.lettuce</groupId> <artifactId>lettuce-core</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> </dependency> <dependency> <groupId>org.redisson</groupId> <artifactId>redisson</artifactId> <version>3.16.0</version> </dependency>
public class BloomFilterDemo { public static void main(String[] args) { Config config = new Config(); config.useSingleServer().setAddress("redis://127.0.0.1:6379"); RedissonClient redissonClient = Redisson.create(config); RBloomFilter<String> bloomFilter = redissonClient.getBloomFilter("bloom-filter"); // 初始化布隆過濾器 bloomFilter.tryInit(200, 0.01); List<String> elements = new ArrayList<>(); for (int i = 0; i < 200; i++) { elements.add(UUID.randomUUID().toString()); } // 向布隆過濾器中新增內容 init(bloomFilter, elements); // 測試檢索效果 test(bloomFilter, elements); redissonClient.shutdown(); } public static void init(RBloomFilter<String> bloomFilter, List<String> elements) { for (int i = 0; i < elements.size(); i++) { if (i % 2 == 0) { bloomFilter.add(elements.get(i)); } } } public static void test(RBloomFilter<String> bloomFilter, List<String> elements) { int counter = 0; for (String element : elements) { if (bloomFilter.contains(element)) { counter++; } } System.out.println(counter); } }
布隆過濾器的初始化方法tryInit有兩個引數:
布隆過濾器可以明確元素不存在,但對於元素存在的判斷是存在錯誤率的;所以初始化時指定的這兩個引數會決定布隆過濾器的向量長度和雜湊函數的個數;
RedissonBloomFilter.tryInit方法程式碼如下:
public boolean tryInit(long expectedInsertions, double falseProbability) { if (falseProbability > 1) { throw new IllegalArgumentException("Bloom filter false probability can't be greater than 1"); } if (falseProbability < 0) { throw new IllegalArgumentException("Bloom filter false probability can't be negative"); } // 根據元素個數和錯誤率計算得到向量長度 size = optimalNumOfBits(expectedInsertions, falseProbability); if (size == 0) { throw new IllegalArgumentException("Bloom filter calculated size is " + size); } if (size > getMaxSize()) { throw new IllegalArgumentException("Bloom filter size can't be greater than " + getMaxSize() + ". But calculated size is " + size); } // 根據元素個數和向量長度計算得到雜湊函數的個數 hashIterations = optimalNumOfHashFunctions(expectedInsertions, size); CommandBatchService executorService = new CommandBatchService(commandExecutor); executorService.evalReadAsync(configName, codec, RedisCommands.EVAL_VOID, "local size = redis.call('hget', KEYS[1], 'size');" + "local hashIterations = redis.call('hget', KEYS[1], 'hashIterations');" + "assert(size == false and hashIterations == false, 'Bloom filter config has been changed')", Arrays.<Object>asList(configName), size, hashIterations); executorService.writeAsync(configName, StringCodec.INSTANCE, new RedisCommand<Void>("HMSET", new VoidReplayConvertor()), configName, "size", size, "hashIterations", hashIterations, "expectedInsertions", expectedInsertions, "falseProbability", BigDecimal.valueOf(falseProbability).toPlainString()); try { executorService.execute(); } catch (RedisException e) { if (e.getMessage() == null || !e.getMessage().contains("Bloom filter config has been changed")) { throw e; } readConfig(); return false; } return true; } private long optimalNumOfBits(long n, double p) { if (p == 0) { p = Double.MIN_VALUE; } return (long) (-n * Math.log(p) / (Math.log(2) * Math.log(2))); } private int optimalNumOfHashFunctions(long n, long m) { return Math.max(1, (int) Math.round((double) m / n * Math.log(2))); }
向布隆過濾器中新增元素時,先使用一系列雜湊函數根據元素得到K個位下標,然後將向量中位下標對應的位設定為1;
RedissonBloomFilter.add方法程式碼如下:
public boolean add(T object) { // 根據帶插入元素得到兩個long型別雜湊值 long[] hashes = hash(object); while (true) { if (size == 0) { readConfig(); } int hashIterations = this.hashIterations; long size = this.size; // 得到位下標陣列 // 以兩個雜湊值根據指定策略生成hashIterations個雜湊值,從而得到位下標 long[] indexes = hash(hashes[0], hashes[1], hashIterations, size); CommandBatchService executorService = new CommandBatchService(commandExecutor); addConfigCheck(hashIterations, size, executorService); RBitSetAsync bs = createBitSet(executorService); for (int i = 0; i < indexes.length; i++) { // 將位下標對應位設定1 bs.setAsync(indexes[i]); } try { List<Boolean> result = (List<Boolean>) executorService.execute().getResponses(); for (Boolean val : result.subList(1, result.size()-1)) { if (!val) { // 元素新增成功 return true; } } // 元素已存在 return false; } catch (RedisException e) { if (e.getMessage() == null || !e.getMessage().contains("Bloom filter config has been changed")) { throw e; } } } } private long[] hash(Object object) { ByteBuf state = encode(object); try { return Hash.hash128(state); } finally { state.release(); } } private long[] hash(long hash1, long hash2, int iterations, long size) { long[] indexes = new long[iterations]; long hash = hash1; for (int i = 0; i < iterations; i++) { indexes[i] = (hash & Long.MAX_VALUE) % size; // 雜湊函數的實現方式 if (i % 2 == 0) { // 新雜湊值 hash += hash2; } else { // 新雜湊值 hash += hash1; } } return indexes; }
hash(long hash1, long hash2, int iterations, long size)
方法中,利用根據元素得到的兩個雜湊值,生成一系列雜湊函數,然後得到位下標陣列;
檢索布隆過濾器中是否存在指定元素時,先使用一系列雜湊函數根據元素得到K個位下標,然後判斷向量中位下標對應的位是否為1,若存在一個不為1,則該元素不存在;否則認為存在;
RedissonBloomFilter.contains方法程式碼如下:
public boolean contains(T object) { // 根據帶插入元素得到兩個long型別雜湊值 long[] hashes = hash(object); while (true) { if (size == 0) { readConfig(); } int hashIterations = this.hashIterations; long size = this.size; // 得到位下標陣列 // 以兩個雜湊值根據指定策略生成hashIterations個雜湊值,從而得到位下標 long[] indexes = hash(hashes[0], hashes[1], hashIterations, size); CommandBatchService executorService = new CommandBatchService(commandExecutor); addConfigCheck(hashIterations, size, executorService); RBitSetAsync bs = createBitSet(executorService); for (int i = 0; i < indexes.length; i++) { // 獲取位下標對應位的值 bs.getAsync(indexes[i]); } try { List<Boolean> result = (List<Boolean>) executorService.execute().getResponses(); for (Boolean val : result.subList(1, result.size()-1)) { if (!val) { // 若存在不為1的位,則認為元素不存在 return false; } } // 都為1,則認為元素存在 return true; } catch (RedisException e) { if (e.getMessage() == null || !e.getMessage().contains("Bloom filter config has been changed")) { throw e; } } } }
到此這篇關於Redis中Redisson布隆過濾器的學習的文章就介紹到這了,更多相關Redis Redisson布隆過濾器內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45