LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

meilisearch

fast, typo-tolerant search engine

TLDR

Start server
$ meilisearch
copy
Start with master key
$ meilisearch --master-key=[your-key]
copy
Specify data directory
$ meilisearch --db-path=[/var/lib/meilisearch]
copy
Set HTTP address
$ meilisearch --http-addr=[127.0.0.1:7700]
copy
Run in production mode
$ meilisearch --env=production --master-key=[key]
copy

SYNOPSIS

meilisearch [options]

DESCRIPTION

Meilisearch is a fast, typo-tolerant search engine. It provides instant search with features like typo tolerance, filters, faceting, and highlighting out of the box.Meilisearch is designed as an alternative to Elasticsearch and Algolia for smaller-scale applications.

PARAMETERS

--master-key key

Master API key.
--db-path path
Database directory.
--http-addr addr
Listen address.
--env mode
Environment (development/production).
--max-indexing-memory size
Memory limit for indexing.
--log-level level
Logging level.

API USAGE

$ # Add documents
curl -X POST 'http://localhost:7700/indexes/movies/documents' \
  -H 'Content-Type: application/json' \
  --data-binary @movies.json

# Search
curl 'http://localhost:7700/indexes/movies/search?q=batman'
copy

INSTALL

sudo pacman -S meilisearch
copy
brew install meilisearch
copy
nix profile install nixpkgs#meilisearch
copy

CAVEATS

Single-node only (no clustering). Index size limited by RAM. Master key required in production. Data format specific.

HISTORY

Meilisearch was created by Clément Renault in 2018 as an open-source, easy-to-use search engine written in Rust.

SEE ALSO

Braincup
Open source brain training for math, memory and focus
Braincup mini-games
41 mini-games · Apache-2.0
No ads · No tracking
Play in browser
Download Braincup on the App StoreGet Braincup on Google PlayGet Braincup on F-Droid
276 stars
From the maker of Linux Command Library
Copied to clipboard
Braincup
Open source brain training for math, memory and focus. 41 mini-games, from mental arithmetic to Sudoku, N-Back and Solo Chess.
Apache-2.0 licensed · No ads · No tracking · No account
From the maker of Linux Command Library
Download Braincup on the App StoreGet Braincup on Google PlayGet Braincup on F-Droid