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
0 answers

Solr : is a "null value" the same as "no value" in the context of facet.missing?

I'm working on implementing search functionality on a website, and I'm using Solr for this. Everything works fine, but I've got a little trouble with the facet.missing parameter for a field. The field may have the values A, C or simply just null.…
sbrattla
  • 5,274
  • 3
  • 39
  • 63
0
votes
0 answers

facet search: MySQL db design for users with full-attributes and slim-attributes

I'm trying to decide a db design that will allow enable fast SELECT of users according to cross-attributes. I have two kind of attributes: Full - each one has these. E.g. location / gender / age etc.. Slim - e.g. tags/interests. Most users have…
Noam
  • 3,341
  • 4
  • 35
  • 64
0
votes
3 answers

Plone - How can I use faceted navigation?

I have a plone site and I have added a content type called game. There are now several games that have been added and that can be viewed. I would like to use the eea.facetednavigation module, which you can read about here:…
tadasajon
  • 14,276
  • 29
  • 92
  • 144
0
votes
2 answers

Get number of documents of a category

I implement a faceted search using Lucene. I have an index of documents and an index of a taxonomy. Then I collect facets for a given level of the taxonomy. My question is: How can I get the number of documents indexed in a given Category of the…
synack
  • 1,699
  • 3
  • 24
  • 50
0
votes
1 answer

Elasticsearch prefixFilter for a facet

Very new to elasticsearch, using the Java client. Is it possible to return facet counts filtered on a prefix? For example, I'm searching for URLs and want to ignore the path, and just count the hostname. Eg, addFacet( filterFacet("myhost",…
Andy Hume
  • 40,474
  • 10
  • 47
  • 58
0
votes
1 answer

Unable to filter out n shingle(n - gram) facets using the "exclude" words option provided in the "facets" query

I am trying to make a tagcloud of words and phrases using the facets feature of elasticsearch. My mapping: curl -XPOST http://localhost:9200/myIndex/ -d '{ ... "analysis":{ "filter":{ "myCustomShingle":{ "type":"shingle", …
serpent403
  • 803
  • 16
  • 32
0
votes
0 answers

How to achieve progressive disclosure of facet fields in Solr?

A good example is amazon.com, where a search for "ipod" would bring a results page with only 2 facets ("Departments" and "Shipping option"). When I hit "Electronics" on the "Departments" facet, the results page reveal new facets like "Brand",…
brutus
  • 31
  • 4
0
votes
1 answer

Lucene downgrade 3.6.0 to 3.5.0

We are using Lucene version 3.6.0 in our project. Now we decided to start using Bobo Browse for faceted search. However the current version of Bobo Browse (3.1.0) doesn't support Lucene 3.6.0, therefore we decided to downgrade back to version 3.5.0.…
robodasha
  • 286
  • 6
  • 21
0
votes
2 answers

Can some help me in implementing Faceted search in PHP

I am trying to build a faceted search for a PHP based e-commerce website. Building filters using GET methods is making code very complicated as the website has many filters. Can someone give some tutorial or some better way for building a faceted…
user434509
  • 425
  • 8
  • 20
0
votes
2 answers

Solr search on a replicated MySQL Database

I want to create a database web publisher. Solr search functionnalities suit perfectly to my needs (faceted search, full text search, etc...). My problem is that I need data to be synchronised on the net. I read that MySQL database have to be…
0
votes
1 answer

Query facet count and its matching documents

We're running Apache Solr v3.1 and SolrJ is our client. We're passing multiple Arbitrary Faceting Query (facet.query) to get the number of matching documents (the facet count) evaluated over the search results in a single Solr query. My use case…
Gnanam
  • 10,613
  • 19
  • 54
  • 72
0
votes
1 answer

SolrNet - Faceted search wrong results

I've got the following class: public class Product { public Product() { Categories = new List(); } [SolrUniqueKey("id")] public int Id { get; set; } [SolrField("name")] public string Name { get; set;…
Julian
  • 1,105
  • 2
  • 26
  • 57
0
votes
1 answer

Error on a Faceted Date Range Query for Solr

I'm trying to get a list of year facets e.g. 2000 (3) 2001 (27) 2002 (15) ... I have a local instance of Solr 3.6 running from the Solr wiki tutorial http://lucene.apache.org/solr/api/doc-files/tutorial.html I tried the following…
Matthew Rhoden
  • 688
  • 1
  • 10
  • 20
0
votes
2 answers

Solr Schema.xml for Faceted Search

We're implementing solr with ecommerce application. The main objective is faster search and better faceted catalog navigation. The problem however is, we're unable to figure out how to map dynamic facets into Solr. When I say dynamic facet, I mean…
Dharmik Bhandari
  • 1,702
  • 5
  • 29
  • 60
0
votes
1 answer

Solr4 index grows even when deleting documents periodically

We are using a Solr 4 engine for generating some facets using pivoting. This index is being feed with documents, the facets generated and then the documents are being deleted. Nevertheless, the index seems to keep growing and the faceting generation…
rreyes1979
  • 1,855
  • 3
  • 23
  • 34
1 2 3
38
39