Typesense Cloud

typesense.org

YES

Replaceable in one session with an AI coding agent.

Hosted Typesense: typo-tolerant search over your own data with an API, priced by cluster rather than by search.

Promptfree, for everyone, and the only version there is
Build me the search I actually need instead of paying for a hosted cluster — starting from the fact that **Typesense itself is open source and free.**

Three honest options, in increasing order of effort.

OPTION ONE: RUN TYPESENSE
- A single binary and a data directory. On a small server it runs comfortably
- It keeps the index in memory, so **size your machine by index size and not by traffic** — that is the one operational surprise in this category
- Snapshot the data directory nightly and you have backups

OPTION TWO: SQLITE FTS5, WHICH IS ENOUGH FAR MORE OFTEN THAN PEOPLE EXPECT
- For under a few hundred thousand documents, FTS5 with trigram support answers in single-digit milliseconds and needs no second service
- Typo tolerance approximated with a trigram index and an edit-distance rerank on the top results
- Prefix matching for as-you-type search comes free
- **No network hop, no second thing to operate, no index to keep in step.** For most sites this is the right answer and nobody suggests it

OPTION THREE: BUILD THE SEARCH LAYER PROPERLY, WHICHEVER ENGINE IS UNDERNEATH

STACK
- Node 20+ with Fastify
- SQLite through better-sqlite3, WAL mode
- Caddy in front

THE PARTS THAT MATTER MORE THAN THE ENGINE
- **Indexing on write, in the same transaction as the change.** A search index rebuilt by a nightly job is a search index that is wrong all day
- A full rebuild command that is safe to run at any time, into a new index, swapped atomically. You will need it
- Synonyms and stop words as data, editable without a deploy
- A ranking that combines text relevance with your own signals — recency, popularity, whether the record is published — and is tunable in one place

SEARCH-AS-YOU-TYPE
- Debounce, cancel the previous request, and never let an old response overwrite a newer one. **Out-of-order responses are the classic bug** and they make search feel broken in a way users cannot describe
- Highlight matches in the result, which costs nothing and doubles perceived quality

WHAT TO MEASURE
- Every query, its result count and whether anything was clicked
- **The zero-result log is the most valuable output of any search system**: it is a list of what people want and cannot find, in their own words
- Click position, so you can tell whether the ranking is actually working

WHAT MATTERS MOST
Try FTS5 first, index inside the write transaction, and log zero-result queries. Most search projects buy an engine when they needed the last two.

What you lose

  • A managed cluster with backups and upgrades
  • High availability without configuring it
  • Somebody else watching memory usage
  • A network endpoint close to your users

If you would rather not build

  • SQLite FTS5, which needs no second service at all

The escape hatch

open source · no votes, no paid placement

Typesense

$0

The search engine the paid product hosts; free to self-host.

typesense/typesensefree · open source

Meilisearch

$0

Typo-tolerant search engine, single binary, self-hosted.

meilisearch/meilisearchfree · open source

Why this verdict

our own opinion · changed only by a person

86/100

Verdict yes at 86: the engine is free, and for most sites SQLite FTS5 is enough. The zero-result log and transactional indexing are the parts worth insisting on whichever engine is used.

History

tracked since 14 Aug 2026 · nothing is ever overwritten

Interest · last 30 days

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 Typesense Cloud

answered from the record above

Is Typesense Cloud free?

No — the plan we track is $36 a month. From around $36/month for a small hosted cluster; the search engine itself is open source.

Can you replace Typesense 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 Typesense Cloud cost?

$36 a month on Small cluster — $432 a year. Recorded 14 Aug 2026.

What do you lose by replacing Typesense Cloud?

A managed cluster with backups and upgrades; High availability without configuring it; Somebody else watching memory usage; A network endpoint close to your users. If any of those carry weight for you, keep paying.

Is there an open-source alternative to Typesense Cloud?

Yes: Typesense, Meilisearch. The prompt on this page is for when you want it your way instead.

Related entries

same category first, most replaced first

All 54 in Dev tools

Not sending yet

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

Esc