# dgobloom **Repository Path**: XBoom/dgobloom ## Basic Information - **Project Name**: dgobloom - **Description**: No description available - **Primary Language**: Go - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-07-28 - **Last Updated**: 2021-07-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README This is a simple Bloom filter implementation written in Go. For the theory behind Bloom filters, read http://en.wikipedia.org/wiki/Bloom_filter This design uses a user-supplied hash function and salts provided at filter construction time. To determine how many salts are required, call 'SaltsRequired' with the desired filter capacity and false positive percentage. bloom_test.go shows how to do this.