How to Install and Uninstall triehash.noarch Package on AlmaLinux 9

Last updated: June 02,2024

1. Install "triehash.noarch" package

This guide let you learn how to install triehash.noarch on AlmaLinux 9

$ sudo dnf update $ sudo dnf install triehash.noarch

2. Uninstall "triehash.noarch" package

Please follow the steps below to uninstall triehash.noarch on AlmaLinux 9:

$ sudo dnf remove triehash.noarch $ sudo dnf autoremove

3. Information about the triehash.noarch package on AlmaLinux 9

Last metadata expiration check: 0:30:46 ago on Wed Mar 13 07:41:12 2024.
Available Packages
Name : triehash
Version : 0.3
Release : 12.el9
Architecture : noarch
Size : 21 k
Source : triehash-0.3-12.el9.src.rpm
Repository : epel
Summary : Generator for order-preserving minimal perfect hash functions in C
URL : https://jak-linux.org/projects/triehash/
License : MIT
Description : TrieHash generates perfect hash functions as C code which then gets
: compiled into optimal machine code as part of the usual program compilation.
:
: TrieHash works by translating a list of strings to a trie, and then converting
: the trie to a set of recursive switch statements; first switching by length,
: and then switching by bytes.
:
: TrieHash has various optimizations such as processing multiple bytes at once
: (on GNU C), and shortcuts for reducing the complexity of case-insensitive
: matching (ASCII only). Generated code performs substantially faster than
: gperf, but is larger.
:
: TrieHash was written for use in APT.