-
Notifications
You must be signed in to change notification settings - Fork 274
DATASOLR-86: Added support for range facets #29
Conversation
Conflicts: src/main/java/org/springframework/data/solr/core/ResultHelper.java src/main/java/org/springframework/data/solr/core/SolrTemplate.java
thank you @juhrlass for opening the pull request. One thing I'm actually not quite clear about is if there's the possibility to add ranges to the existing options...? |
Hi Christoph, FacetOptions and FacetRangeOptions are two separate things in this code. One can add additional FacetRangeOptions to a FacetQuery the result. Please tell me your opinion about this. Maybe I can help refactoring the code so that it fits better? |
20f70a0
to
72a591f
Compare
+1 on this :) |
When is this RangeFacet feature going to make it into the spring data solr code base? |
Any plans to merge it? Is there any other option to get facet range data using spring-data for the time the request not gets merged? |
+1 for merge |
1 similar comment
+1 for merge |
Added FacetRangeOptions similar to FacetOptions that allows the creation of range facets.
Extended DefaultQueryParser and ResultHelper to support range facets in queries and results.
See: https://jira.springsource.org/browse/DATASOLR-86