-
Notifications
You must be signed in to change notification settings - Fork 116
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 code samples for sub-setting methods #274
Conversation
Thanks for your PR @irenejoeunpark |
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.
Thanks for this PR @irenejoeunpark!
I propose some fixes and also if you want to update the update_ranking_rules_1
, here is the code:
client.index("movies").updateRankingRuleSettings(new String[]
{
"words",
"typo",
"proximity",
"attribute",
"sort",
"exactness",
"release_date:asc",
"rank:desc"
});
I forgot to say that all the get sub-settings samples should be updated too. They have all been renamed with Settings at the end.
became:
|
bors merge |
Build succeeded: |
Issue #269
Added/updated code samples for sub-setting methods
Added
reset
samples and updatedupdate
samples for the following sub-setting methods.