Meilisearch Cloud
Replaceable in one session with an AI coding agent.
Hosted search with typo tolerance and faceting, built on an open engine that runs happily on one small machine.
Build the search I actually need instead of hosted Meilisearch — and note the engine is open source, so this is running it rather than writing it. **First, measure your corpus.** Under a million documents on one machine, SQLite's FTS5 answers in single-digit milliseconds and needs nothing new running at all. Reach for a search engine when you want typo tolerance and faceting out of the box, not because a search box implies one. STACK - Meilisearch in a container, or SQLite with FTS5 if the corpus is small - Node 20+ with Fastify for the indexing and the search endpoint - Caddy in front, **with the engine bound to localhost** — a search engine on a public interface is a database on a public interface INDEXING - Index at write time, never scan at read time. A document changes, one record is updated - A full reindex command that works and is tested, because you will need it after a schema change - **Fields weighted: a title match outranks a body match, by a lot.** That single rule is most of perceived relevance - Store only what the results page displays, plus what you filter on. An index carrying whole documents is an index that stops fitting in memory SEARCH - Prefix matching so results appear as you type, and typo tolerance scaled to word length — one edit on a short word, two on a long one - Facets as declared attributes with counts, which is one query - **Permission filters compiled into the query**, never applied to the results afterwards. Filtering after is how a private title leaks into an autocomplete - Synonyms as a small table you maintain from your own failed searches THE PART THAT MAKES IT ACTUALLY GOOD - **Record every query, the result count, and whether anything was clicked.** That log is your relevance data and the only thing that will ever tell you the search is working - Failed searches ranked: that list is a content backlog and a synonym list at the same time - Look at it monthly. Ten synonyms added from real queries beat any amount of tuning by intuition OPERATIONS - A snapshot on a schedule, off the machine. The index is rebuildable from your database, so this is convenience rather than the backup that matters - Memory is the constraint: this engine is fast because it keeps a lot in memory, so measure with your real corpus before sizing - Health endpoint that runs one query through the real path AND THE STATIC ALTERNATIVE - For a documentation or content site, Pagefind builds an index at build time and searches entirely in the browser. No server, no query cost, works offline. If that fits, it is the cheapest good answer available WHAT MATTERS MOST Measuring the corpus first, and logging the queries. The first tells you whether you need any of this; the second is what makes it improve.
What you lose
- A managed instance with upgrades and backups
- Capacity for a search box on a busy site without you sizing anything
- Replication, if search must survive a machine
- Nothing to operate, which is the whole fee
If you would rather not build
- SQLite FTS5, which is already in the application for most sites
The escape hatch
open source · no votes, no paid placement
Meilisearch
$0The engine itself: typo-tolerant search in one binary.
meilisearch/meilisearchfree · open source
Pagefind
$0Build-time search index searched entirely in the browser.
Pagefind/pagefindfree · open source
Why this verdict
our own opinion · changed only by a person
86/100
Verdict yes at 86: the engine is open and runs on very little. The prompt starts by asking whether a search engine is needed at all, because for most sites FTS5 or Pagefind already answers it.
History
tracked since 14 Aug 2026 · nothing is ever overwritten
Nothing recorded yet. This chart fills in once the page has visitors, votes or prompt copies — it will not draw a flat line to look busy.
Questions about Meilisearch Cloud
answered from the record above
Is Meilisearch Cloud free?
No — the plan we track is $30 a month. From around $30/month billed monthly, priced on documents and searches; the engine is open source and free to self-host.
Can you replace Meilisearch Cloud by building your own?
YES. Replaceable in one session with an AI coding agent. Replacement score 86 out of 100, build time one session. Read what you lose before you decide.
How much does Meilisearch Cloud cost?
$30 a month on Build — $360 a year. Recorded 14 Aug 2026.
What do you lose by replacing Meilisearch Cloud?
A managed instance with upgrades and backups; Capacity for a search box on a busy site without you sizing anything; Replication, if search must survive a machine; Nothing to operate, which is the whole fee. If any of those carry weight for you, keep paying.
Is there an open-source alternative to Meilisearch Cloud?
Yes: Meilisearch, Pagefind. The prompt on this page is for when you want it your way instead.
Related entries
same category first, most replaced first
Every week, something stops being worth paying for.
New verdicts, prices that moved, entries added. One email a week. Unsubscribe in one click. Nothing is being sent yet — your address is kept here, and the first issue is the first thing it is used for.
free forever · no tracking pixel · stored here, never passed to anyone

