golang-github-willf-bloom-dev binary package in Ubuntu Jammy amd64

 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.

Publishing history

Date Status Target Pocket Component Section Priority Phased updates Version
  2022-01-05 21:13:49 UTC Published Ubuntu Jammy amd64 release universe devel Optional 3.1.0-1
  • Published
  • Copied from ubuntu jammy-proposed amd64 in Primary Archive for Ubuntu
  Deleted Ubuntu Jammy amd64 proposed universe devel Optional 3.1.0-1
  • Removal requested .
  • Deleted by Ubuntu Archive Auto-Sync

    Moved to jammy

  • Published
  2022-01-05 21:13:52 UTC Superseded Ubuntu Jammy amd64 release universe devel Optional 3.0.1-2
  • Removed from disk .
  • Removal requested .
  • Superseded by amd64 build of golang-github-willf-bloom 3.1.0-1 in ubuntu jammy PROPOSED
  • Published
  • Copied from ubuntu jammy-proposed amd64 in Primary Archive for Ubuntu
  2022-01-07 00:10:09 UTC Deleted Ubuntu Jammy amd64 proposed universe devel Optional 3.0.1-2
  • Removed from disk .
  • Removal requested .
  • Deleted by Ubuntu Archive Auto-Sync

    Moved to jammy

  • Published
  2021-11-04 10:50:16 UTC Superseded Ubuntu Jammy amd64 release universe devel Optional 2.0.3+git20190228.25ba46e-2
  • Removal requested .
  • Superseded by amd64 build of golang-github-willf-bloom 3.0.1-2 in ubuntu jammy PROPOSED
  • Published
  • Copied from ubuntu eoan-proposed amd64 in Primary Archive for Ubuntu