golang-github-seiflotfy-cuckoofilter 0.0~git20170413.0.5bd91bc-1 source package in Ubuntu

Changelog

golang-github-seiflotfy-cuckoofilter (0.0~git20170413.0.5bd91bc-1) unstable; urgency=medium

  * New upstream release.

 -- Michael Lustfield <email address hidden>  Mon, 17 Jul 2017 20:48:41 -0500

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Artful: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-seiflotfy-cuckoofilter_0.0~git20170413.0.5bd91bc-1.dsc 2.5 KiB f64c5e8d01166e508d9e1adc2e99288f658b7769bc5bc48f280e1b32f1b4678a
golang-github-seiflotfy-cuckoofilter_0.0~git20170413.0.5bd91bc.orig.tar.xz 3.6 KiB d8fa3c47319e2555e547003bad3cf1f8a1f198b2b8968eb5727a45c7b58032e4
golang-github-seiflotfy-cuckoofilter_0.0~git20170413.0.5bd91bc-1.debian.tar.xz 2.3 KiB 8ef4ae80a8cb696401d77ffb93688d8d90f987b515f6268182dcc7b8213b0243

No changes file available.

Binary packages built by this source

golang-github-seiflotfy-cuckoofilter-dev: Bloom filter replacement using cuckoo hashing

 Cuckoo filter is a Bloom filter replacement for approximated
 set-membership queries. While Bloom filters are well-known space-efficient
 data structures to serve queries like "if item x is in a set?", they do
 not support deletion. Their variances to enable deletion (like counting
 Bloom filters) usually require much more space.
 .
 Cuckoo filters provide the flexibility to add and remove items
 dynamically. A cuckoo filter is based on cuckoo hashing (and therefore
 named as cuckoo filter). It is essentially a cuckoo hash table storing
 each key's fingerprint. Cuckoo hash tables can be highly compact, thus
 a cuckoo filter could use less space than conventional Bloom filters,
 for applications that require low false positive rates (< 3%).