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

Last updated: October 09,2024

1. Install "triehash.noarch" package

This tutorial shows how to install triehash.noarch on Fedora 35

$ sudo dnf update $ sudo dnf install triehash.noarch

2. Uninstall "triehash.noarch" package

Please follow the step by step instructions below to uninstall triehash.noarch on Fedora 35:

$ sudo dnf remove triehash.noarch $ sudo dnf autoremove

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

Last metadata expiration check: 2:32:14 ago on Wed Sep 7 02:25:42 2022.
Available Packages
Name : triehash
Version : 0.3
Release : 7.fc35
Architecture : noarch
Size : 21 k
Source : triehash-0.3-7.fc35.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.