-
Notifications
You must be signed in to change notification settings - Fork 15
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
Update SDK 3 FTS to further detail facets in results #99
base: master
Are you sure you want to change the base?
Conversation
rfc/0052-sdk3-full-text-search.md
Outdated
|
||
##### Term Facet Results | ||
``` | ||
class TermFacetResult implements SearchFacetResult { |
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.
java calls it TermSearchFacetResult
rfc/0052-sdk3-full-text-search.md
Outdated
The JSON structure of each **term range** is: | ||
|
||
``` | ||
TermRange { |
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.
java calls it SearchTermRange
rfc/0052-sdk3-full-text-search.md
Outdated
|
||
##### Date Range Facet Results | ||
``` | ||
class DateFacetResult implements SearchFacetResult { |
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.
java is DateRangeSearchFacetResult (and same pattern for the others)
long other(); | ||
List<TermFacetResult> terms(); | ||
List<NumericRangeFacetResult> numericRanges(); | ||
List<DateRangeFacetResult> dateRanges(); |
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.
the names now also need to be modified
The JSON structure of each **date range** is: | ||
|
||
``` | ||
DateRange { |
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.
SearchDateRange?
The JSON structure of each **numeric range** is: | ||
|
||
``` | ||
NumericRange { |
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.
SearchNumericRange?
The JSON structure of each **term range** is: | ||
|
||
``` | ||
TermFacet { |
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.
SearchTermRange?
No description provided.