How to Install and Uninstall javaewah.noarch Package on Fedora 35

Last updated: October 09,2024

1. Install "javaewah.noarch" package

This guide let you learn how to install javaewah.noarch on Fedora 35

$ sudo dnf update $ sudo dnf install javaewah.noarch

2. Uninstall "javaewah.noarch" package

Please follow the guidelines below to uninstall javaewah.noarch on Fedora 35:

$ sudo dnf remove javaewah.noarch $ sudo dnf autoremove

3. Information about the javaewah.noarch package on Fedora 35

Last metadata expiration check: 2:55:53 ago on Wed Sep 7 02:25:42 2022.
Available Packages
Name : javaewah
Version : 1.1.6
Release : 13.fc35
Architecture : noarch
Size : 166 k
Source : javaewah-1.1.6-13.fc35.src.rpm
Repository : fedora
Summary : A word-aligned compressed variant of the Java bitset class
URL : https://github.com/lemire/javaewah
License : ASL 2.0
Description : 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.