MVN

com.googlecode.javaewah : JavaEWAH

Maven & Gradle

Mar 08, 2023
93 usages
537 stars

JavaEWAH · 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. The goal of word-aligned compression is not to achieve the best compression, but rather to improve query processing time. Hence, we try to save CPU cycles, maybe at the expense of storage. However, the EWAH scheme we implemented is always more efficient storage-wise than an uncompressed bitmap (implemented in Java as the BitSet class). Unlike some alternatives, javaewah does not rely on a patented scheme.

<dependency>
    <groupId>com.googlecode.javaewah</groupId>
    <artifactId>JavaEWAH</artifactId>
    <version>1.2.3</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.googlecode.javaewah : JavaEWAH to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.2.3

All Versions

Choose a version of com.googlecode.javaewah : JavaEWAH to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.2.x
JavaEWAH-1.2.3
1.1.x
JavaEWAH-1.1.13
JavaEWAH-1.1.12
JavaEWAH-1.1.11
JavaEWAH-1.1.9
JavaEWAH-1.1.8
JavaEWAH-1.1.7
JavaEWAH-1.1.6
JavaEWAH-1.1.5
JavaEWAH-1.1.4
JavaEWAH-1.1.3
JavaEWAH-1.1.2
JavaEWAH-1.1.1
JavaEWAH-1.1.0
1.0.x
JavaEWAH-1.0.8
JavaEWAH-1.0.7
JavaEWAH-1.0.6
JavaEWAH-1.0.5
JavaEWAH-1.0.4
JavaEWAH-1.0.3
JavaEWAH-1.0.2
JavaEWAH-1.0.1
JavaEWAH-1.0.0
0.9.x
JavaEWAH-0.9.2
JavaEWAH-0.9.1
JavaEWAH-0.9.0
0.8.x
JavaEWAH-0.8.12
JavaEWAH-0.8.11
JavaEWAH-0.8.10
JavaEWAH-0.8.9
JavaEWAH-0.8.7
JavaEWAH-0.8.6
JavaEWAH-0.8.5
JavaEWAH-0.8.4
JavaEWAH-0.8.3
JavaEWAH-0.8.2
JavaEWAH-0.8.1
JavaEWAH-0.8.0
0.7.x
JavaEWAH-0.7.9
JavaEWAH-0.7.8
JavaEWAH-0.7.7
JavaEWAH-0.7.6
JavaEWAH-0.7.5
JavaEWAH-0.7.4
JavaEWAH-0.7.3
JavaEWAH-0.7.2
JavaEWAH-0.7.1
JavaEWAH-0.7.0
0.6.x
JavaEWAH-0.6.12
JavaEWAH-0.6.11
JavaEWAH-0.6.10
JavaEWAH-0.6.9
JavaEWAH-0.6.8
JavaEWAH-0.6.7
JavaEWAH-0.6.6
JavaEWAH-0.6.5
JavaEWAH-0.6.4
JavaEWAH-0.6.3
JavaEWAH-0.6.2
JavaEWAH-0.6.1
JavaEWAH-0.6.0
0.5.x
JavaEWAH-0.5.6
JavaEWAH-0.5.5
JavaEWAH-0.5.4
JavaEWAH-0.5.3
JavaEWAH-0.5.2
JavaEWAH-0.5.1
JavaEWAH-0.5.0
0.4.x
JavaEWAH-0.4.5
JavaEWAH-0.4.4
JavaEWAH-0.4.3
JavaEWAH-0.4.2
JavaEWAH-0.4.1
JavaEWAH-0.4.0
0.3.x
JavaEWAH-0.3.3
JavaEWAH-0.3.2
JavaEWAH-0.3.1

How to add a dependency to Maven

Add the following com.googlecode.javaewah : JavaEWAH maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.googlecode.javaewah</groupId>
    <artifactId>JavaEWAH</artifactId>
    <version>1.2.3</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.googlecode.javaewah : JavaEWAH gradle dependency to your build.gradle file:

implementation 'com.googlecode.javaewah:JavaEWAH:1.2.3'

Gradle Kotlin DSL: Add the following com.googlecode.javaewah : JavaEWAH gradle kotlin dependency to your build.gradle.kts file:

implementation("com.googlecode.javaewah:JavaEWAH:1.2.3")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.googlecode.javaewah : JavaEWAH sbt scala dependency to your build.sbt file:

libraryDependencies += "com.googlecode.javaewah" % "JavaEWAH" % "1.2.3"

Advertisement