What is Meilisearch?
Meilisearch is a powerful, open-source search engine designed to provide fast and relevant full-text searches. With features like facet search, semantic search, and geosearch, it enhances your search capabilities effortlessly.
What are the features of Meilisearch?
- Lightning-fast search: Returns answers in less than 50 milliseconds.
- Plug-n-play: Deploy in minutes with smart presets for zero configuration.
- Ultra relevant: Out-of-the-box great relevancy for every use case.
- Multi-modal search: Includes images, videos, and audio for comprehensive results.
- Federated search: Search across multiple data sources for improved user experience.
- Search analytics: Gain insights and make data-driven decisions.
What are the use cases of Meilisearch?
- E-commerce: Improve product search and increase sales.
- Media: Enhance content discovery for articles and videos.
- Enterprise: Streamline internal search for documents and resources.
How to use Meilisearch?
To get started, simply install Meilisearch and use the following code to add documents:
const client = new MeiliSearch('http://localhost:7700', 'masterKey');
await client.index('movies').addDocuments([
{ 'id': 1, 'title': 'Carol' },
{ 'id': 2, 'title': 'Wonder Woman' },
{ 'id': 3, 'title': 'Life of Pi' },
{ 'id': 4, 'title': 'Mad Max: Fury Road' },
{ 'id': 5, 'title': 'Moana' },
{ 'id': 6, 'title': 'Philadelphia'}
]);
const search = await index.search('philodelphia');
console.log(search);














