From 75fe7c3cb64dbe51a5cd204ec50c23ec90a417de Mon Sep 17 00:00:00 2001 From: Tanner Ryan Date: Wed, 30 Jan 2019 17:58:43 -0500 Subject: [PATCH] Add package ring (#2349) Package ring provides a high performance and thread safe Go implementation of a bloom filter. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 922d5c34..778a9c6e 100644 --- a/README.md +++ b/README.md @@ -325,6 +325,7 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a * [merkletree](https://github.com/cbergoon/merkletree) - Implementation of a merkle tree providing an efficient and secure verification of the contents of data structures. * [mspm](https://github.com/BlackRabbitt/mspm) - Multi-String Pattern Matching Algorithm for information retrieval. * [pipeline](https://github.com/hyfather/pipeline) - An implementation of pipelines with fan-in and fan-out. +* [ring](https://github.com/TheTannerRyan/ring) - Go implementation of a high performance, thread safe bloom filter. * [roaring](https://github.com/RoaringBitmap/roaring) - Go package implementing compressed bitsets. * [set](https://github.com/StudioSol/set) - Simple set data structure implementation in Go using LinkedHashMap. * [skiplist](https://github.com/MauriceGit/skiplist) - Very fast Go Skiplist implementation.