facet « Development « 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 » Development » facet 

1. How to get facet ranges in solr results?    stackoverflow.com

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, ...

2. Solr - Getting facet counts without returning search results    stackoverflow.com

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 ...

3. Filtering solr facet counts    stackoverflow.com

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 ...

4. Solr Facetting - Showing First 10 results and Other    stackoverflow.com

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 ...

5. How to filter results based on order in Solr?    stackoverflow.com

I need to facet inside n documents which are selected like

... ORDER BY something DESC LIMIT 100
Is that possible with Solr? How?

6. Solr and facet search    stackoverflow.com

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 ...

7. How well does Solr scale over large number of facet values?    stackoverflow.com

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".

  • Would Solr be able ...

8. Developing custom facet calculations in SOLR    stackoverflow.com

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 ...

9. SOLR - How to have facet counts restricted to rows returned in resultset    stackoverflow.com

/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 ...

10. How to use id and facets with Solr    stackoverflow.com

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 ...

11. Solr - Sort search result based on facet count    stackoverflow.com

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 ...

12. solr geography hierarchy    stackoverflow.com

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 ...

13. Javascript Faceted Search Client (Framework)    stackoverflow.com

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 ...

14. Facet on Range or Boolean    stackoverflow.com

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 ...

15. Solr stopwords showing up in facet search results    stackoverflow.com

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 ...

16. facet like functionality in NoSQL systems    stackoverflow.com

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 ...

17. PatternTokenizerFactory and stopwords    stackoverflow.com

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 ...

18. get facet results only in Solr    stackoverflow.com

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) ...

19. Solr facet counts with selective exclude    stackoverflow.com

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 ...

20. Grouping results and keeping facet counts consistent    stackoverflow.com

Using Solr 3.3
Key Store Item Name Description Category Price
=========================================================================
1 Store Name Xbox 360 Nice game ...

21. Solr facet count for specific words    stackoverflow.com

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 ...

22. protected words on facet-result?    stackoverflow.com

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 ...

23. how to search for more than one facet in solr?    stackoverflow.com

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 ...

    24. First Solr Facet call on text_general pretty slow    stackoverflow.com

    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 ...

    25. Solr: how to search for substring in facets    stackoverflow.com

    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 ...

    26. Solr complicated faceting    stackoverflow.com

    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 ...

    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.