All Questions
Tagged with faceted-search solrj
14 questions
1
vote
0
answers
471
views
Solr still gives old data while faceting from the deleted documents
Solr gives old data while faceting from old deleted or updated documents.
For example we are doing faceting on name. name changes frequently for our application. When we index the document after ...
0
votes
0
answers
882
views
Solr search and facet by hierarchical category, subcategory
I have categories like:
auto, tools & travel
auto, tools & travel > luggage tags
auto, tools & travel > luggage tags > luggage spotters
auto, tools & travel > luggage ...
1
vote
0
answers
621
views
Solr stats.facet with multi-valued field
I am in a process of upgrading Solr from 1.x to Solr 5.2.1.This jira ticket says faceting on stats with multi-valued field has been taken back. So when I try to do it says
Stats can only facet on ...
0
votes
1
answer
45
views
add + to facet result
i need to add + to facet results. Like this:
"facet_counts": {
"facet_queries": {},
"facet_fields": {
"color": [
"red", +74,
"white", +53
...
Is there a way to do this using solr ...
1
vote
0
answers
257
views
SolrJ getFacetPivot is throwing error
I am able get facet pivot values using solr query
http://app:8983/solr/test_shard1_replica1/select?wt=json&indent=true&q=%3A&facet=true&facet.pivot=categoryl0,categoryl1&start=0&...
0
votes
2
answers
562
views
How to exclude selected filter (facet) from search result?
Please suggest how to exclude selected filter from solr search result.
For example, I have selected filter "camera" but still camera (1) is returned in search response. How can I request solr to ...
4
votes
1
answer
4k
views
Filter query exclusion with SolrJ
I use a SolrJ-based client to query Solr and I have been trying to construct HTTP requests where facet name/value pairs are excluded. The web interface I am working with has a refine further ...
1
vote
1
answer
850
views
Solr range faceting on a date field
I need to apply a range facet to a date field. But the gaps should be in minute intervals, like /10MIN. Solr uses DateMathParser to parse given gaps and unfortunately it does not support minute ...
6
votes
2
answers
11k
views
Faceting using SolrJ and Solr4
I've gone through the related questions on this site but haven't found a relevant solution.
When querying my Solr4 index using an HTTP request of the form
&facet=true&facet.field=country
...
2
votes
1
answer
1k
views
How to set facet method in SolrJ?
How to set facet.method=enum in SolrJ SolrQuery? I am looking for something like solrQuery.setFacetMethod(SOLR_FACET_METHOD.enum)
0
votes
1
answer
2k
views
Query facet count and its matching documents
We're running Apache Solr v3.1 and SolrJ is our client.
We're passing multiple Arbitrary Faceting Query (facet.query) to get the
number of matching documents (the facet count) evaluated over the ...
2
votes
2
answers
2k
views
Accessing Solr facet_ranges via Solrj
Maybe it is already to late, but I am struggling around with Solr's Facet Ranges. I can execute the query via Solrj, but I do not understand how to retrieve the results via Solrj. The QueryResponse ...
0
votes
1
answer
582
views
Solr 3.1 facet range query
Has anyone used the Solr 3.1 facet ranges for numerical values successfully? E.g. for document fields with the double or tdouble field type? (No analyzer)
My requests over SolrJ seem all to ignore ...
1
vote
1
answer
3k
views
How to get facet.query results only, using solrj?
I'm trying to get results of a facet query using solrj, but it seems it doesn't matter whether I add the facet query or not. I get the same document list anyway.
So this query returns the same ...