A search database stores and serves indexes built for fast text and filter queries. In stores, it powers millisecond search over big catalogs with facets and sorting.
A search database is a datastore optimized for information retrieval rather than OLTP. It holds inverted indexes for text, doc values/columnar stores for filters/sorts, and often vector indexes for semantic retrieval—plus replicas and caches for low-latency reads.
A search database is the backbone of fast, relevant product discovery. Design clean fields, use locale analyzers, keep deltas flowing, and monitor latency and index health.
Search DB vs relational DB?
Relational DBs excel at transactions; search DBs are purpose-built for retrieval & ranking.
Do I need vectors?
Use vectors where recall gaps exist—keep lexical for precision and filters.
See these concepts in action: semantic, typo-tolerant search for Shopify stores — implemented by Rapid Search