File: control

package info (click to toggle)
postgresql-hll 2.7-2.1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 58,668 kB
  • ctags: 544
  • sloc: ansic: 2,325; sql: 1,756; cpp: 220; makefile: 78
file content (25 lines) | stat: -rw-r--r-- 1,066 bytes parent folder | download
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
Source: postgresql-hll
Section: database
Priority: optional
Maintainer: Cyril Bouthors <cyb@debian.org>
Uploaders: Cyril Bouthors <cyril@bouthors.org>
Build-Depends: debhelper (>= 8.0.0), postgresql-server-dev-all
Standards-Version: 3.9.3
Homepage: https://github.com/aggregateknowledge/postgresql-hll

Package: postgresql-hll
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: HyperLogLog extension for PostgreSQL
 This Postgres module introduces a new data type `hll` which is a HyperLogLog
 data structure. HyperLogLog is a **fixed-size**, set-like structure used for
 distinct value counting with tunable precision. For example, in 1280 bytes
 `hll` can estimate the count of tens of billions of distinct values with only a
 few percent error.
 .
 In addition to the algorithm proposed in the original paper, this
 implementation is augmented to improve its accuracy and memory use without
 sacrificing much speed.
 .
 The full description can be found at
 https://github.com/aggregateknowledge/postgresql-hll/blob/master/README.markdown