facet « Field « Java Lucene Q&A

Home
Java Lucene Q&A
1.Database
2.Development
3.document
4.Field
5.index
6.lucene
7.lucene.net
8.nutch
9.query
10.solr
11.Tools
Java Lucene Q&A » Field » facet 

1. distinct SOLR field values without count    stackoverflow.com


My question is pretty similar to this question
The difference, I'd need the least RAM intensive way to gather information about the distinct values. I DON'T care for the actual count ...

2. Solr facets on unique values of fields    stackoverflow.com

I have a document structure in Solr that looks something like this (irrelevant fields excluded):

<field name="review_id" type="int" indexed="true" stored="true"/>
<field name="product_id" type="int" indexed="true" stored="true"/>
<field name="product_category" type="string" indexed="true" stored="true" multiValued="true"/>
product_id here is one-to-many ...

3. Solr multiple facet sint field range    stackoverflow.com

I'm using Solr 1.4 and have defined the following field in schema.xml:

<field name="SALE_PRICE" type="sint" indexed="true" stored="true" />
With this query I get the expected items within the defined range (25000 to 30000).
http://localhost:8983/solr/select/?q=*%3A*&facet=on&facet.field={!ex=SALE_PRICE}SALE_PRICE&fq={!tag=SALE_PRICE}SALE_PRICE:[25000+TO+30000]
With ...

4. Solr exclusion on stats.field?    stackoverflow.com

One can tag specific filters and exclude those filters when faceting. This is generally needed when doing multi-select faceting.
Is something similar possible for the stats.field?
stats.field={!ex=foo}price // does not work
I ...

5. facet dynamic fields with apache solr    stackoverflow.com

I have defined dynamic field in ApacheSolr: I use it to store products features like: color_feature, diameter_feature, material_feature and so on. Number of those fields are not constant becouse products are changing. Is ...

6. How do I retrieve all applicable facet fields for a Solr search    stackoverflow.com

I'm trying to use Solr for faceted-seaarch on a website. When a user fires off a search query, I query Solr and retrieve the search results which can then be displayed. My question ...

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.