How to Install and Uninstall triehash.noarch Package on Fedora 36

Last updated: May 17,2024

1. Install "triehash.noarch" package

This is a short guide on how to install triehash.noarch on Fedora 36

$ sudo dnf update $ sudo dnf install triehash.noarch

2. Uninstall "triehash.noarch" package

Learn how to uninstall triehash.noarch on Fedora 36:

$ sudo dnf remove triehash.noarch $ sudo dnf autoremove

3. Information about the triehash.noarch package on Fedora 36

Last metadata expiration check: 0:02:33 ago on Thu Sep 8 02:05:26 2022.
Available Packages
Name : triehash
Version : 0.3
Release : 8.fc36
Architecture : noarch
Size : 21 k
Source : triehash-0.3-8.fc36.src.rpm
Repository : fedora
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.