-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add federated search #393
base: main
Are you sure you want to change the base?
Add federated search #393
Conversation
0a09b55
to
78d662d
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #393 +/- ##
==========================================
+ Coverage 89.56% 90.38% +0.81%
==========================================
Files 13 14 +1
Lines 776 842 +66
==========================================
+ Hits 695 761 +66
Misses 81 81 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
78d662d
to
1e3c302
Compare
My team has been using the forked repo's branch in our staging environment and everything is working smoothly. We will push to prod soon, but would love to see this hit the mainline release pipeline before pulling the trigger in an ideal world. |
I will review this after the rebase or the merge of the class name change :) |
1e3c302
to
d4080ed
Compare
@@ -11,23 +12,59 @@ def multi_search(searches) | |||
normalize(options, index_target) | |||
end | |||
|
|||
MultiSearchResult.new(searches, client.multi_search(search_parameters)) | |||
MultiSearchResult.new(searches, client.multi_search(queries: search_parameters)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change is necessary due to this change in ms-ruby: meilisearch/meilisearch-ruby@055f7d0
c2ddbab
to
af0c198
Compare
No soft deprecation here, since federated search has not been published yet.
5a0b981
to
d2ab989
Compare
@brunoocasali Rebased and also removed |
Pull Request
Related issue
Continues on top of #384
Fixes #389
I've got the general idea of the implementation, what's left is:
Ready for review