Questions tagged [faceted-search]

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.

Faceted search, also called faceted navigation or faceted browsing, is a technique for accessing information organized according to a faceted classification system, allowing users to explore a collection of information by applying multiple filters.

A faceted classification system classifies each information element along multiple explicit dimensions, enabling the classifications to be accessed and ordered in multiple ways rather than in a single, pre-determined, taxonomic order

578 questions
0
votes
1 answer

How to Facet Search on Solr?

I am new to Solr and I don't know how to fire a query for Facet search. I have the following fields in my schema (I have put a schema.XML here). I have total 6 fields, on which I can try faceting. Is there any field to define for Faceting in…
Vinit Patel
  • 2,408
  • 5
  • 28
  • 53
0
votes
1 answer

How to perform faceting to group results by other fields in Elastic Search

I have a document mapping that looks like this: _id : integer title: string category: string country: string Given a search by 'title' i would like to get the amount of results found in all categories and all countries, so something…
jmserra
  • 1,296
  • 4
  • 18
  • 34
0
votes
1 answer

Faceting search with dynamic boundaries in hybris 5

I need to realize faceting search with dynamic boundaries in hybris. I have not ideas how to make it. Can you help me?
gstackoverflow
  • 36,709
  • 117
  • 359
  • 710
0
votes
1 answer

solr. faceted search understanding

I cannot understand result of faceted search. I indexed two files: 1: SOLR1000 Solr, the Enterprise Search Server Apache Software Foundation
gstackoverflow
  • 36,709
  • 117
  • 359
  • 710
0
votes
1 answer

SOLR Related facet search

I am using SOLR and i have a schema something Like this :
Pouya Samie
  • 3,718
  • 1
  • 21
  • 34
0
votes
1 answer

Rails and Solr: filter by facet with rows

I'm having trouble with faceted search over an integer field, that is a counter cache for associated records of this model. Basically: Post.solr_search do facet(:comments_count) do row('No') { with(:comments_count).less_than 1 } …
ichigolas
  • 7,595
  • 27
  • 50
0
votes
0 answers

solr - Facet equal to number of occurences instead of number of documents

My problem is that I want to compute the facets (or counts each value) for a multivalued field, and taking into account that this value can appear more that once inside this multivalued field. Simple facets return documents count without computing…
Hakim
  • 3,225
  • 5
  • 37
  • 75
0
votes
1 answer

Error in FACET API in drupal when integrating it with Solr

Notice: Undefined index: #active in FacetapiFacetProcessor->processHierarchy() (line 1562 of /srv/bindings/cda094ccdab94690bf13ccc53186f1f5/code/sites/all/modules/facetapi/plugins/facetapi/adapter.inc). Notice: Undefined index: #active in…
user3058875
  • 59
  • 1
  • 13
0
votes
3 answers

Restrict multi field facet calculation to subset of possible values

I have a non trivial SOLR query, which already involves a filter query and facet calculations over multiple fields. One of the facet fields is a a multi value integer field, that is used to store categories. There are many possible categories and…
Achim
  • 15,415
  • 15
  • 80
  • 144
0
votes
1 answer

Penalizing documents in facet results based on their content

If we have the following documents in elasticsearch: [ {'name': 'John', 'time': '2013-01-01 12:01:00'}, {'name': 'John', 'time': '2013-01-01 12:02:00'}, {'name': 'John', 'time': '2013-01-01 12:03:00'}, {'name': 'John', 'time':…
ventolin
  • 2,971
  • 3
  • 21
  • 25
0
votes
1 answer

Content Type fields with multiple words display as multiple facets

I implemented filtering through facets and facing a very strange problem. I have been trying a content type with a field for Region. Region contains options like North America, Latin America, Asia, etc. In my facets, it ends up looking like this…
Steve
  • 2,546
  • 8
  • 49
  • 94
0
votes
2 answers

Grouping on search result - RavenDB

I have an index which displays text search results. Results are always displayed only for a single month. I need to show how many results does each month has. Example is at the bottom. I understand that Faceted search should do the job, but…
0
votes
1 answer

How to avoid duplicate values from the url with faceted search?

Standard feceting example from django-haystack documentation. I use FacetedSearchView and FacetedSearchForm. Provided links: age 20 (4) 18 (2) 21 (2) 22 (2) 24 (2) price 200 (8) 150 (6) 100 (2) 300 (2) 400 (2) When I chooses a link 20 (4), will…
bns
  • 182
  • 2
  • 11
0
votes
1 answer

Solr facet counts wrong

I have a Solr query returning results from a collection of about 700,000 documents. It runs on a single master with one slave instance. I filter my documents and run faceting on one field (sports_is). However, the count of the single faceting…
Juergen
  • 662
  • 4
  • 9
0
votes
1 answer

Grouped facets with elasticsearch

I'm looking for a way to display my facets in a grouped list. For example i have some users and a facet to filter by country, this gives me: Country Holland (5) England (2) Egypt (5) Rwanda (2) And what i would like to have is: Europe Holland…
Daniel
  • 225
  • 3
  • 14