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
4
votes
2 answers

Solr complicated faceting

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 new query with "fq" =>…
user987220
  • 207
  • 1
  • 2
  • 10
4
votes
1 answer

Php + Mysql: Full Text and Faceted Search with no server side support

I am trying to add search support in my website(hosted on a shared web hosting ... hostgator.com) for that I am looking for an open source solution for full text and faceted search which doesn't requires any server side support(apart from php and…
Ravi Gupta
  • 6,258
  • 17
  • 56
  • 79
4
votes
2 answers

Tagging and Searching Plone Content from Constrained Vocabularies

I want to let my editors tag content on several orthogonal vocabularies and then have a nice search interface that lets users search for the content based on those vocabularies. It seems too parts of the solution exist ATVocabularyManager - lets…
djay
  • 1,058
  • 5
  • 12
4
votes
2 answers

SOLR - PathHierarchyTokenizerFactory Facet Query

I have been trying to perform a query on a field that is configured to be solr.PathHierarchyTokenizerFactory, but the query just returns all records. It seems that doing a facet query is just not working. Does anyone have a way of accomplishing…
Vince
  • 165
  • 1
  • 14
4
votes
4 answers

Does anyone know of a faceted search solution for Drupal 7?

Faceted Search module is not being moved to Drupal 7. What are my alternatives?
4
votes
1 answer

Creating a dynamic swagger for an Elasticsearch API

I want to create a dynamic swagger of an elasticsearch API since the response returned by Api is unexpected because it contains facets and I would like to know if there is way to generate the swagger automatically through elasticsearch.
4
votes
3 answers

Using regex in facet.contains Solr

I have solr field stored as - record1 --> colorDimension : "Purple|91" record2 --> colorDimension : "Purple|974|91" record3 --> colorDimension : "Purple|974" I need to facet on this colorDimension Field in a way such that term contains "Purple" and…
4
votes
1 answer

VisualSearch.js : Is there a vanilla Javascript alternative to VisualSearch.js (Faceted Searching)?

I have requirement in my project where I need something exactly similar to DocumentCloud's VisualSearch.js : https://documentcloud.github.io/visualsearch/ This solution relies heavily on Backbone.js and Underscore.js( relies on APIs like _.any) But…
Rohit Rane
  • 2,790
  • 6
  • 25
  • 41
4
votes
2 answers

Is it possible to change angular bootstrap uib-dropdown templateUrl dynamically?

I want to change the uib-dropdown template dynamically when the user clicks one of its
  • , just like he could "navigate" within that dropdown. I tried to make it via templateUrl, but nor the ng-templates nor standalone partials can successfully…
  • 4
    votes
    2 answers

    elasticsearch - additional field in aggregation results

    I have the following aggregation for Categories { "aggs": { "category": { "terms": { "field": "category.name" } } } } // results "category": { "buckets": [ { "key": "computer & office", …
    qwaz
    • 1,285
    • 4
    • 23
    • 47
    4
    votes
    1 answer

    Solr/Lucene: Indexing facet values

    For example, say I have the following facet: Colors Red (7825) Orange (2343) Green (843) Blue (5412) In my database, colors would be a table and each color would have a primary key and a name/value. When indexing with Solr/Lucene, in all of the…
    Jesse MacVicar
    • 546
    • 1
    • 7
    • 14
    4
    votes
    1 answer

    Filter query exclusion with SolrJ

    I use a SolrJ-based client to query Solr and I have been trying to construct HTTP requests where facet name/value pairs are excluded. The web interface I am working with has a refine further functionality, which allows excluding one or more facet…
    panza
    • 1,341
    • 7
    • 38
    • 68
    4
    votes
    2 answers

    Elasticsearch facet term versus label

    The object that I am indexing has both a UserId (a GUID) and a FullName property. I would like to do a faceted search using the UserId but display the FullName so that it's readable. I don't want to do the facet on the FullName since it…
    Jeff Treuting
    • 13,910
    • 8
    • 36
    • 47
    4
    votes
    2 answers

    QueryOptionsBuilder Deprecation

    As seen on http://developer.marklogic.com/learn/java/analytics, you are able to do faceted searches with the JavaAPI. However, the examples on that page use QueryOptionsBuilder, which has been deprecated. Is there an alternative to using …
    Paul
    • 449
    • 1
    • 5
    • 13
    4
    votes
    2 answers

    MySQL and faceted navigation (filter by attributes)

    I feel like this question has probably been asked a thousand times already, so I apologize if it's been answered. And if so, can someone point me to the right posts/links? What I'm trying to do is build a faceted navigation for my site. It uses…