🧪 Multi-search API endpoint Prototype #615
Replies: 5 comments 5 replies
-
This is amazing! Very excited for |
Beta Was this translation helpful? Give feedback.
-
Hello everyone 👋 Quick update We released a new prototype version 🧪
Installation guide and Usage examples have been updated accordingly. |
Beta Was this translation helpful? Give feedback.
-
great stuff, thank you. I'm indexing everything I want to search in, which are instances with their attributes of interest, lets say: Every class goes into their own index now (before multisearch i put them all in one) Now the point/problem: So: should return results for every index just multi-search is doing now. Hope my requirement is clear and I'm not the only one with it :) |
Beta Was this translation helpful? Give feedback.
-
Hello, everyone following this discussion 👋 We have just released the first RC (release candidate) of Meilisearch containing this new implementation! docker run -it --rm -p 7700:7700 -v $(pwd)/meili_data:/meili_data getmeili/meilisearch:v1.1.0-rc.0 You are welcome to communicate any feedback about this new implementation in this discussion. If you encounter any bugs, please report them here. 🎉 Official and stable release containing this change will be available on 3rd April 2023 |
Beta Was this translation helpful? Give feedback.
-
Hey folks ✨ v1.1 has been released and features the Note: it's not possible to aggregate results coming from different indexes on a single list natively yet. 📚 https://docs.meilisearch.com/learn/what_is_meilisearch/features.html#multi-index-search |
Beta Was this translation helpful? Give feedback.
-
Hello everyone, 👋
EDIT: It's now available in the
v1.1
release candidateWe just released a 🧪 prototype that allows sending multiple search requests into one HTTP call, and we need your feedback.
This new endpoint aims to make two things easier as it removes the need to parallelize multiple HTTP requests on the client side:
How to get the prototype?
Using docker, use the following command:
docker run -p 7700:7700 -v $(pwd)/meili_data:/meili_data getmeili/meilisearch:prototype-multi-search-3
From source, compile Meilisearch on the
prototype-multi-search-3
tagHow to use the prototype?
POST
/multi-search
Request Body
Describing a query object present in the
queries
arrayindexUid
Response Body
Describing a search response object in the
results
arrayindexUid
Usage Examples
Multi-index Search
Request Payload
Response
Disjunctive Facets Distribution
Request Payload
Response
Thanks to anyone being involved in making Meilisearch better.
If you want to have a direct chat with us about the prototype, we have a dedicated discord discussion. Feel free to join! ✨
Beta Was this translation helpful? Give feedback.
All reactions