Stacks Search Engine
Full-text search integration with Meilisearch, Algolia, Typesense, and OpenSearch drivers.
Key Paths
- Core package:
storage/framework/core/search-engine/src/ - Configuration:
config/search-engine.ts
Search Driver Factory
import {
flushModelDocuments,
useAlgolia,
useMeilisearch,
useOpensearch,
useSearchEngine,
useTypesense,
} from '@stacksjs/search-engine'
const search = useSearchEngine() // default driver
const algolia = useAlgolia() // Algolia client
const meili = useMeilisearch() // Meilisearch client
const openSearch = useOpensearch() // OpenSearch driver
const typesense = useTypesense() // Typesense driver
Document Operations
// Index documents
await search.addDocuments('products', [
{ id: 1, name: 'Widget', description: 'A useful widget', price: 29.99 },
{ id: 2, name: 'Gadget', description: 'A cool gadget', price: 49.99 }
])
// Search
const results = await search.search('products', 'widget')
// List indexes
const indexes = await search.listAllIndexes()
// Get/update settings
const settings = await search.getSettings('products')
await search.updateSettings('products', {
searchableAttributes: ['name', 'description'],
filterableAttributes: ['price', 'category'],
sortableAttributes: ['price', 'created_at']
})
// Flush all documents
await flushModelDocuments('Product')
Model Integration (useSearch Trait)
Models with useSearch trait are automatically indexed:
defineModel({
name: 'Product',
traits: {
useSearch: {
displayable: ['name', 'description', 'price'],
searchable: ['name', 'description'],
sortable: ['name', 'price', 'created_at'],
filterable: ['category', 'status', 'price']
}
}
})
CLI Commands
buddy search-engine:update # index all searchable models
buddy search-engine:update --model Product # index specific model
buddy search-engine:update --flush # flush before re-indexing
buddy search-engine:update --settings # update search settings only
buddy search-engine:settings # list current settings
buddy search-engine:settings --model Product # settings for specific model
Driver Comparison
| Feature | Meilisearch | Algolia | Typesense | OpenSearch |
|---|---|---|---|---|
| Self-hosted | Yes | No | Yes | Yes |
| Managed option | Yes | Yes | Yes | Yes |
| Model lifecycle indexing | Yes | Yes | Yes | Driver must implement the full contract |
config/search-engine.ts
{ driver: 'opensearch' } // 'meilisearch' | 'algolia' | 'opensearch' | 'typesense'
Environment variables: MEILISEARCH_HOST, MEILISEARCH_KEY, SEARCH_ENGINE_DRIVER
Gotchas
- Default driver is
opensearch— configure in config or env - A selected driver must implement the complete
SearchEngineDriversurface; never satisfy the type with an empty cast useSearchtrait determines which model fields are indexeddisplayablecontrols which fields appear in search resultssearchablecontrols which fields are queried during searchfilterableenables faceted filtering on those fieldssortableenables sorting by those fields- Use
buddy search-engine:update --flushfor full re-index - Meilisearch requires a running Meilisearch server
- Algolia requires API keys from your Algolia dashboard
- Settings updates don't re-index — run
search-engine:updateafter changes