1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
Source: golang-github-retailnext-hllpp
Section: database
Priority: extra
Homepage: https://github.com/retailnext/hllpp
Maintainer: Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org>
Uploaders: Sipwise Development Team <support@sipwise.com>,
Alexandre Viau <aviau@debian.org>
Build-Depends:
debhelper (>= 9),
dh-golang (>= 1.9),
golang-go,
Standards-Version: 3.9.8
Vcs-Git: https://anonscm.debian.org/git/pkg-go/packages/golang-github-retailnext-hllpp.git
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-go/packages/golang-github-retailnext-hllpp.git
XS-Go-Import-Path: github.com/retailnext/hllpp
Package: golang-github-retailnext-hllpp-dev
Architecture: all
Pre-Depends:
${misc:Pre-Depends}
Depends:
${misc:Depends},
Built-Using: ${misc:Built-Using}
Description: HyperLogLog++ cardinality estimation algorithm
hllpp is an implementation of the HyperLogLog++ cardinality estimation
algorithm in go. It optimizes for memory usage over CPU usage. It
implements all the HyperLogLog optimizations introduced in the
HyperLogLog++ paper (http://goo.gl/Z5Sqgu). Some notable features include:
.
* Marshaling so you can serialize to your datastore,
* Extra space savings by only using 5 bits per register when possible,
* Built-in non-streaming murmur3 implementation for fast hashing of input
data.
.
This is the dev package.
|