Assume that I have a field called price for the documents in Solr and I have that field faceted. I want to get the facets as ranges of values (eg: 0-100, ... |
I need to return only the facet counts from solr. So I basically want to search over all documents and return the facet counts, but I don't want to return any ... |
Given the following scenario:
<field name="product_id" type="text" indexed="true" stored="true" multivalued="true"/>
<field name="product_type" type="text" indexed="true" stored="true" multivalued="true"/>
i want to get facet counts for the facet field product_id filtered by specific product_type given a resultset ... |
I am implementing a solution in Solr where I have a lot of values in my facet.
As opposed to displaying a long list of values(facets) down the side of my page ... |
I need to facet inside n documents which are selected like
... ORDER BY something DESC LIMIT 100
Is that possible with Solr? How?
|
Does facet searching come built in when you setup your schema or do you have to do some things to set this up?
Does it basically work out of the box on ... |
I'm using Solr and I want to facet over a field "group".
Since "group" is created by users, potentially there can be a huge number of values for "group".
|
|
I'm looking into using Solr for a project where we have some specific faceting requirements. From what I've learned, Solr provides range-based facets, where Solr can provide facets of different value-ranges ... |
/select/?q=*:*&rows=100&facet=on&facet.field=category
Say I have around a lakh documents indexed. But i return only 100 documents using rows=100. The facet counts returned for category, however return the counts for all documents indexed.
Can we ...
|
I have those kind of documents to index in Solr :
- title
- authorName
- authorId
I want to make a facet on the authorId field , but I want to display the authorName (the authorId is ... |
I have information of products in Solr and each product is under a category. I would like to sort product search result based on facet count on Category. So if there ... |
I've been trying to figure out a way to implement faceting with hierarchies in solr and can't figure out how to do it in my situation. I've read a couple ... |
I wonder if there's any javascript framework (client-side stuff) to manage search results UI in a facet-based way (with facet generation, counting for items matching that facet..).
In other words, something like ... |
In my Solr schema I have a field called TotalReviews which shows the number of reviews of the docuement. Now I would like to have a facet that shows the number ... |
I am currently testing facet searches on a text field in my Solr schema and noticing that I am getting a significant number of results that are in my stopwords.txt file.
My ... |
Does anyone know / can someone point to an nosql db, which would support faceting, like in Apache SOLR, off the shelf?
I have read, that in Sphinx they don't support facet ... |
an document field in solr/lucene called COLORS has group of words like this:
field1: blue/dark red/green
field2: blue/yellow/orange
[...]
I need to run an faceted search over that to get all the colors and the ... |
I am trying to make search on my database using Solr, and i need to build a facet for the date of the articles(2011-6-12,2011-7-1 ..etc) and another facet for category(sport, news..etc) ... |
I'm not sure if this is possible, but I'd like to be able to control the counts returned for facets more closely than just include and exclude.
Specifically, I have an interface ... |
Using Solr 3.3
Key Store Item Name Description Category Price
=========================================================================
1 Store Name Xbox 360 Nice game ... |
I am trying to find the facet count for a particular field in my Solr Implementation.
I was wondering if there is a way to get facet counts for only a ... |
I' using lucene with solr to index some documents (news). Those documents also have an HEADLINE.
Now I try to make an facet search over the HEADLINE field to find the terms ... |
I need to search for facets in solr as below:
fq=country:usa
fq=country:canada
fq=topic:industrial
fq=topic:political
now i need to search for the articles that have the above facets (logical And) and (logical Or).
suppose ... |
For a word-frequency-in-text query I am executing a Solr query on my index. The facet.field goes onto a text_general field using a facet.mincount and a facet.limit parameter. The query is sometimes ... |
I have country field in my solr DB to represent the countries related to this item. the list of countries are PIPE separated
ex:
<arr name="country">
<str>France | United Kingdom | Norway | UAE ... |
I have problems with faceting. Imagine this situation. Product can be in more than one category. This is common behavior for faceting:
Category
- Android (25)
- iPhone (55)
- other (25)
Now when I select "Android", I make ... |