Faceted search (also called faceted navigation, guided navigation, or parametric search) breaks up search results into multiple categories, typically showing counts for each, and allows the user to "drill down" or further restrict their search results based on those facets.
0
votes
1answer
28 views
SOLR faceted-search to return facet counts as with OR operator
I'll try first explain what I would like to achieve by using faceted-search in SOLR, before setting the question. Imagine I have a parameter for dog which is describing for what is dog suitable for ...
0
votes
0answers
32 views
Faceted search using Lucene 4.3
I was checking on Lucene Faceted search and need some guidance. The official doc mentions about
DocumentBuilder categoryDocBuilder = new CategoryDocumentBuilder(taxo);
But I am unable to find ...
0
votes
1answer
42 views
Getting total word frequencies for a subset of documents in Solr
I'm interested in using Solr to analyze documents and to obtain word frequencies for all document matching a particular criteria.
I tried termVectorComponent but I was only able to get term ...
0
votes
1answer
23 views
Faceting on part of a string
Let's say I've got some documents in an index. One of the fields is a url. Something like...
{"Url": "Server1/Some/Path/A.doc"},
{"Url": "Server1/Some/OtherPath/B.doc"},
{"Url": ...
0
votes
1answer
22 views
RavenDB facet on list values
Is faceting on the values of a list possible? I can query off of them in the index but it doesn't look like facets are returning any values. Here is a test:
...
0
votes
1answer
31 views
Elasticsearch ignoring whitespaces and cases for facet terms
I have made my es schema with some fields marked as no_analysis for creating facets. But it seems some of my data contains whitespaces or lowercase letters. e.g.
for a field named color i have values ...
0
votes
1answer
51 views
Liferay searchContext search by AssetTags and Keywords
I'm trying to implement custom search portlet through AssetEntries. Currently AssetEntryQuery doesn't allow to search with keywords. I'm trying to search through FacetedSearcher. Search by keywords ...
0
votes
0answers
19 views
how to disable nesting (drill-down) in haystack faceting
I am using django-haystack in one of my projects and am using the faceting feature to show facets for different fields. Currently the facets look something like this:
Places
- New York (51)
...
0
votes
1answer
17 views
set field's initial value within haystack's FacetedSearchForm
I am using django-haystack with Solr backend in one of my projects. I have a SearchForm which inherits from FacetedSearchForm. Now, what I am trying to do is to add an intital value to some of the ...
1
vote
1answer
31 views
Can RavenDB faceted search somehow break down a facet into sub-facets?
I am pretty new to faceted search, so it is kind of difficult for me to wrap my head around this... but here goes:
Pretend I have Item which contains a collection of SubItems and the SubItem has an ...
0
votes
0answers
19 views
Faceted search with session dictionary in Python
Using web.py I am trying to build a website able to search the autoscout24.de using its API (autoscout24 is a german car sales website). I am now able to get some results from the API and display them ...
1
vote
1answer
36 views
Solr filter out facet results individually
I am working on filtering out facet returned by solr based on predefined list of criterias.
For example I am querying for documents that are of different types. The facet returned is as follows:
...
0
votes
1answer
21 views
ElasticSearch faceted search for a multilingual field
I have a Elasticsearch DSL query like below,
query = {
"query": {"query_string": {"query": "%s" % q}},
"facets": {"destination": {
"terms": {"field": "destination"}}}}
...
1
vote
1answer
44 views
Thinking Sphinx name of facets
I have define facets for product model like this:
product_index.erb
ThinkingSphinx::Index.define :product, :with => :active_record do
indexes publish
indexes name, :sortable => true
...
1
vote
1answer
37 views
Is there a special way to do faceting on numeric fields in Lucene?
In an application using Lucene.Net, I have a numeric field that stores integers. The cardinality of the values is rather low (typically less than 20-30 different values).
I'd like to do a faceted ...
0
votes
0answers
30 views
Sort a Lucene Faceted Search
I am using a pure Lucene 4.2.0 Faceted Search using the lucene-facet module.
I got it to work, but how can I change the sort behavior for the searcher? I use the following seacrh method of the ...
0
votes
1answer
61 views
How to use facet on group response in solr query?
i want to use facet on a particular field which is returned by a group query.I mean, say 100 docs are returned by the group query on field video_format and in those 100 docs a particular field say ...
1
vote
2answers
56 views
Add multiple (not hardcoded) facets in my querybuiler
I'm pretty new to Elastic Search and the Elastic Search API I'm using in C#: PlainElastic.Net.
I have a simple request, but I'm stuck with it: how can I add multiple (not hardcoded) facets in my ...
0
votes
0answers
324 views
How to grep JSON on change of select box with jquery
I'm still a bit of a newbie when it comes to finding data and displaying it from a JSON object, so take my questions for what it's worth and I'll try to be as detailed as possible.
I need a bit of ...
1
vote
1answer
82 views
Elasticsearch: Faceted query with terms returning unexpected result
I am trying to run a faceted query on some logs that I have stored in ES. The logs look something like
{"severity": "informational","message_hash_value": "00016B15", "user-agent": "Mozilla/5.0 (X11; ...
0
votes
2answers
131 views
Elasticsearch term facet not showing negative terms
I am using elastic search term facets, My field contains some negative values but the facet is ignoring the negative sign
following is the facet query
http://myserver.com:9200/index/type/_search
...
1
vote
0answers
82 views
database and search gurus: weighted faceted search on multivalued fields, with a twist
This question almost boils down to this "faceted search, multiple multivalued fields, sorted by weight rather than count".
The database
I have about 10M events, each with multiple editions, each ...
0
votes
0answers
44 views
Solr and auto-complete
I'm trying to build a search engine for my website, but I'm relatively new to Solr. I'm trying to implement the auto-complete functionality. I played with different options for auto-complete: wildcard ...
0
votes
1answer
49 views
Solr cloud result grouping
I have a solr schema which contains few index fields
Now i have different types of products which are distinguished by 'type' field. I want max 50 search results per search request.But the results ...
1
vote
3answers
156 views
Treat two facets as the same value
Assume a list of books with an Author field. How might one facet on the Author field, but treat the values "Stephen King" and "Richard Bachman" as the same? So that these results:
Hemmingway: 8
...
0
votes
1answer
60 views
Backbone faceted filter
I'm trying to find facet filtering solution for backbone (collection data). I didn't mean searchbox, but something like here http://www.documentcloud.org/public/search/ - project list in left sidebar.
...
0
votes
0answers
21 views
Exclusive number of hits for a faceted search
I am using Lucene for Java and I have a doubt about the implementation of a special faceted search.
So, when you perform a faceted search over a set of categories you obtain the number of documents ...
0
votes
1answer
253 views
Multiple properties in facet (elasticsearch)
I have following index:
curl -XPUT "http://localhost:9200/test/" -d '
{
"mappings": {
"files": {
"properties": {
"name": {
"type": ...
0
votes
1answer
208 views
How to create Solr schema for hierarchical facet by splitting data into multiple fields at index time
I want to implement Solr hierarchical facet for my application where there is 2 level hierarchy between Category and SubCategory. I want to use a solution mentioned on ...
0
votes
0answers
110 views
Sunspot rails search, deny creating facets by condition
I use sunspot_rails gem in full text searching in Ruby on Rails,
I added boolean field ('show_facet') to my model Product,
and to solr index
Then I want to do next:
if 'show_facet' == true then ...
0
votes
0answers
14 views
Libraries used for Faceted Search
I am working on Faceted search, Can anyone help me, How it can be helpful in unstructured data?
What is the performance of these Algorithms/ libraries
1
vote
0answers
101 views
Faceted search in linq
In my project I'm trying to implement Faceted search using Linq. I don't want to use Solr, Lucene, etc...
My DB:
products
+----+------+
| id | name |
+----+------+
| 1 | prod1|
+----+------+
| 2 ...
0
votes
1answer
32 views
Faceted search engine with scoring
I'm looking for a search engine solution whereby there are attributes for each document which can be filtered against, but not absolutely - only scored.
doc1 has attributes a, b and c
doc2 has ...
0
votes
1answer
62 views
Tree search with Lucene
I have a taxonomy index that describes a tree structure. When performing a query I want to get the number of hits for multiple categories (not necessarily in the same level of the tree). For example, ...
0
votes
0answers
87 views
Multilevel faceting in Lucene 4.x
After reading the facet help document of Lucene 4, I can see it helps for a folder structure like faceting(Restricted to a single level). I would like to have a multi-level/multiple faceting in my ...
0
votes
1answer
99 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
...
0
votes
1answer
34 views
Get the size of the documents in solr
I have a set of solr documents, for example:
<long name="document_id">1</long>
<long name="size">1666</long>
<arr name="label">
<str>A</str>
...
1
vote
3answers
121 views
Solr gives too many irrelevant results
I have a tagging system and tags are like this:
italian kitchen
chinese kitchen
japanese kitchen
russian kitchen
vegeterian kitchen
When I query italian kitchen, I don't get the italian kitchen on ...
1
vote
1answer
69 views
sphinx facet search: 'with_all' analogue for php/java
I have a doc set with MVA and i need to filer docs that have all required attrs (let's say, i need all 'news' doc having both 'java' and 'oracle' tags, assume i have tags ids).
at ThinkingSphinx ...
0
votes
1answer
309 views
Faceted search. Are Solr with MongoDb good for it? Does someone know about modules, libraries for faceted search?
Good day, everyone.
I have an e-commerce website (Kohana php framework + Mysql + Sphinx search).
I want to integrate faceted search (also called faceted navigation, guided navigation, or parametric ...
4
votes
1answer
137 views
What can cause a join to be slower than dividing to two queries?
I'm performing JOIN from multiple tables to perform a faceted search. When avoiding the JOIN and dividing the query into two different ones I've noticed a big performance boost, so I assume my JOIN ...
1
vote
0answers
71 views
How to properly design solr4 schema for multivalued hierarchichal pivot facets
I am to create an application which will allow searching for planets with certain kind of robots "living" on them. Of course the XML I am receiving with the data is send to me from Vogsphere and looks ...
3
votes
0answers
319 views
Solr hierarchical facets: how to get all 2nd-level values for the top N 1st-level values
I have a pair of multi-valued index fields, author and author_norm, and I've created a hierarchical facet field for them using the pattern described at ...
0
votes
1answer
104 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
1answer
120 views
Does Jackrabbit provide faceted search?
I am exploring the features of Apache Jackrabbit to be used in one of my projects. One of the features that I would require is a faceted search implementation based on the metadata stored in the ...
0
votes
0answers
90 views
Facet query with custom counts in facet navigation
I need to use facet navigation for filtering search result. By adding each term I can build query filter like (Attribute1=term1 OR Attribute1=term2) AND (Attribute2=term4). So when I have such query, ...
0
votes
1answer
51 views
How to Calculate Crawl Space of Faceted Navigation URLs
Our Ecommerce website utilizes search engine crawlable faceted navigation links. According to Google Webmaster Tools, googlebot has crawled but chosen not to select, hundreds of thousands of urls and ...
0
votes
0answers
68 views
Drill down until bottom
I've developed a search engine using Apache's Lucene and I've implemented a faceted search in order to drill down for a given set of categories (called interests). For example, if I have the ODP ...
0
votes
0answers
69 views
how to boost Lucene facets?
Is there a way to add a boosting factor to a facet in Lucene? Something like:
List<CategoryPath> facetCategories = new ArrayList<CategoryPath>();
for (MyFeature f : allFeatures) {
...
0
votes
0answers
45 views
Faceted search is not working
I have a dedicated SOLR server with a local SOLR running. I have changed the schema.xml for both of the SOLRs and reindexed them. But the same SOLR query responding different responses. The local SOLR ...

