Add package ring (#2349)

Package ring provides a high performance and thread safe Go implementation of a bloom filter.
This commit is contained in:
Tanner Ryan 2019-01-30 17:58:43 -05:00 committed by Cássio Botaro
parent 1fb5ded2cc
commit 75fe7c3cb6

View File

@ -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. * [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. * [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. * [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. * [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. * [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. * [skiplist](https://github.com/MauriceGit/skiplist) - Very fast Go Skiplist implementation.