libjavaewah-java 1.2.3-1 source package in Ubuntu

Changelog

libjavaewah-java (1.2.3-1) unstable; urgency=medium

  * New upstream version 1.2.3
  * Update debian/watch file for github tag format
  * Refresh patches for upstream 1.2.3
  * Freshen years in debian/copyright
  * Bump Standards-Version to 4.6.2 (no changes)
  * Set Rules-Requires-Root: no in debian/control
  * Ignore moditect-maven-plugin (not yet packaged for Debian),
    thus the resulting JAR file does not contain module-info.

 -- tony mancill <email address hidden>  Tue, 20 Jun 2023 21:35:57 -0700

Upload details

Uploaded by:
Debian Java Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Java Maintainers
Architectures:
all
Section:
misc
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

Builds

Mantic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libjavaewah-java_1.2.3-1.dsc 2.1 KiB d00fd1db34231e050ac95ff431cb9949435fe1c8910f802d12469caf9697d261
libjavaewah-java_1.2.3.orig.tar.gz 132.6 KiB b4bf847129ff8af5c3e0e0a6c74c5b33486f540d4e5054ef54d165d26d1f02b1
libjavaewah-java_1.2.3-1.debian.tar.xz 3.3 KiB 68476c92b7cf75f568f2643ea91f4617a9ded7c13d1fd35ae1e2a811ce245119

Available diffs

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.