libjavaewah-java 0.6.12-1 source package in Ubuntu
Changelog
libjavaewah-java (0.6.12-1) unstable; urgency=low * Initial release. (Closes: #712051) -- Jakub Adam <email address hidden> Tue, 11 Jun 2013 19:50:21 +0200
Upload details
- Uploaded by:
- Debian Java Maintainers
- Uploaded to:
- Sid
- Original maintainer:
- Debian Java Maintainers
- Architectures:
- all
- Section:
- misc
- Urgency:
- Low Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Xenial | release | universe | misc | |
Trusty | release | universe | misc |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
libjavaewah-java_0.6.12-1.dsc | 2.2 KiB | 02f9d1d3326863fa4743d6e35b8205323373c8bd3c9218ef1a6a167478c98292 |
libjavaewah-java_0.6.12.orig.tar.xz | 29.6 KiB | 3c82e8ff2789e5211943e952ce4ee8be18ada8dbce1b77f9cd1a896153dcfb4b |
libjavaewah-java_0.6.12-1.debian.tar.gz | 2.9 KiB | 7f6df22433469b336184a56c758c1fadbfc2059caa50f860456451b68c02ec7d |
No changes file available.
Binary packages built by this source
- libjavaewah-java: Compressed variant of the Java bitset class
The bit array data structure is implemented in Java as the BitSet class.
Unfortunately, this fails to scale without compression.
.
JavaEWAH is a word-aligned compressed variant of the Java bitset class. It uses
a 64-bit run-length encoding (RLE) compression scheme. It trades-off some
compression for better processing speed. It also has a 32-bit version which
compresses better, but is not as fast.
.
In general, the goal of word-aligned compression is not to achieve the best
compression, but rather to improve query processing time. Hence, the class
tries to save CPU cycles, maybe at the expense of storage. However, the EWAH
scheme implemented is always more efficient storage-wise than an uncompressed
bitmap as implemented in the BitSet class). Unlike some alternatives, javaewah
does not rely on a patented scheme.
- libjavaewah-java-doc: Compressed variant of the Java bitset class (documentation)
JavaEWAH is a word-aligned compressed variant of the Java bitset class. It uses
a 64-bit run-length encoding (RLE) compression scheme. It trades-off some
compression for better processing speed. It also has a 32-bit version which
compresses better, but is not as fast.
.
This package contains the API documentation of libjavaewah-java.