How To Install RediSearch on Fedora 36
Introduction
In this tutorial we learn how to install RediSearch
on Fedora 36.
What is RediSearch
RediSearch implements a search engine on top of Redis, providing three main features - full text search, secondary indexing and a suggestion (auto-completion) engine. It provides advanced search features like exact phrase matching and numeric filtering for text queries, that are not possible or efficient with traditional Redis search approaches.
We can use yum
or dnf
to install RediSearch
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install RediSearch.
Install RediSearch on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install RediSearch
using dnf
by running the following command:
sudo dnf -y install RediSearch
Install RediSearch on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install RediSearch
using yum
by running the following command:
sudo yum -y install RediSearch
How To Uninstall RediSearch on Fedora 36
To uninstall only the RediSearch
package we can use the following command:
sudo dnf remove RediSearch
RediSearch Package Contents on Fedora 36
/usr/lib/.build-id
/usr/lib/.build-id/74
/usr/lib/.build-id/74/976191700ebc0146bcde0f1d2a07e65977fb40
/usr/lib64/redis/modules/redisearch.so
/usr/share/doc/RediSearch
/usr/share/doc/RediSearch/Administration.md
/usr/share/doc/RediSearch/Aggregations.md
/usr/share/doc/RediSearch/Chinese.md
/usr/share/doc/RediSearch/Clients.md
/usr/share/doc/RediSearch/Commands.md
/usr/share/doc/RediSearch/Configuring.md
/usr/share/doc/RediSearch/DESIGN.md
/usr/share/doc/RediSearch/Escaping.md
/usr/share/doc/RediSearch/Extensions.md
/usr/share/doc/RediSearch/Highlight.md
/usr/share/doc/RediSearch/Overview.md
/usr/share/doc/RediSearch/Query_Syntax.md
/usr/share/doc/RediSearch/Quick_Start.md
/usr/share/doc/RediSearch/README.md
/usr/share/doc/RediSearch/Scoring.md
/usr/share/doc/RediSearch/Sorting.md
/usr/share/doc/RediSearch/Stemming.md
/usr/share/doc/RediSearch/Stopwords.md
/usr/share/doc/RediSearch/Synonyms.md
/usr/share/doc/RediSearch/Tags.md
/usr/share/doc/RediSearch/Threading.md
/usr/share/doc/RediSearch/concurrency.png
/usr/share/doc/RediSearch/favicon.png
/usr/share/doc/RediSearch/go_client.md
/usr/share/doc/RediSearch/index.md
/usr/share/doc/RediSearch/java_client.md
/usr/share/doc/RediSearch/latency.png
/usr/share/doc/RediSearch/logo.png
/usr/share/doc/RediSearch/logo_small.png
/usr/share/doc/RediSearch/payloads.md
/usr/share/doc/RediSearch/python_client.md
/usr/share/doc/RediSearch/throughput.png
/usr/share/licenses/RediSearch
/usr/share/licenses/RediSearch/LICENSE
References
Summary
In this tutorial we learn how to install RediSearch
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).