golang-github-willf-bloom 3.3.1-1 source package in Ubuntu

Changelog

golang-github-willf-bloom (3.3.1-1) unstable; urgency=medium

  * New upstream release.
  * according to ratt nothing needs to be rebuild

 -- Thorsten Alteholz <email address hidden>  Sat, 03 Dec 2022 11:49:30 +0100

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-willf-bloom_3.3.1-1.dsc 2.4 KiB 1e634a596ea0cfafe08c099b8f1c51cb9337166a96d2f0b528120597b90fda3d
golang-github-willf-bloom_3.3.1.orig.tar.gz 15.2 KiB 908be2341b2d53bce5296cb7a9180e9e2c0b1ee7d777f53a1e115438da638d6a
golang-github-willf-bloom_3.3.1-1.debian.tar.xz 3.5 KiB b12b10b48a06ba5175708e5b08fc854494c21d7f1c8e32bef4c8e4dc088736a0

Available diffs

No changes file available.

Binary packages built by this source

golang-github-willf-bloom-dev: Go package implementing Bloom filters

 A Bloom filter is a representation of a set of n items, where the main
 requirement is to make membership queries; i.e., whether an item is a
 member of a set.
 .
 A Bloom filter has two parameters: m, a maximum size (typically a
 reasonably large multiple of the cardinality of the set to represent)
 and k, the number of hashing functions on elements of the set. (The
 actual hashing functions are important, too, but this is not a
 parameter for this implementation). A Bloom filter is backed by a BitSet
 (https://github.com/willf/bitset); a key is represented in the filter
 by setting the bits at each value of the hashing functions (modulo
 m). Set membership is done by testing whether the bits at each value of
 the hashing functions (again, modulo m) are set. If so, the item is in
 the set. If the item is actually in the set, a Bloom filter will never
 fail (the true positive rate is 1.0); but it is susceptible to false
 positives. The art is to choose k and m correctly.
 .
 In this implementation, the hashing functions used is murmurhash
 (github.com/spaolacci/murmur3), a non-cryptographic hashing function.