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

Caching Facet Queries

Just tracked down a bug relating to what appears to be a facet query being cached in RavenDB. I found the line of code that sets aggresive caching but only for the given session. In this session, it appears the code is only getting a 'FacetSetup'…
Justin Self
  • 6,137
  • 3
  • 33
  • 48
0
votes
1 answer

Load Ajax content of faceted search results in jQuery Colorbox

Let me start by saying that I am new to working with Ajax. I'm trying to load content via ajax and have it displayed in a colorbox pop up that is initiated when a user clicks a link. This is what I have so far, but I can't even get Colorbox to open.…
user2725782
  • 139
  • 9
0
votes
0 answers

How to grouping facet_counts results into separate categories using multiple Solrnet facet.query parameters?

I have implemented CreateDate Field Search as well Spatial Search, both using facet.query to generate a link like this. …
0
votes
0 answers

How can I retrieve meta information about synonym matches for a Solr query?

We are using Solr to provide search functionality for our site, and I have the following requirement which has me stumped: Given the search term "2011 Bolinger", identify that "Bollinger" (note the different spelling) is a valid value for the…
Dan
  • 21
  • 2
0
votes
1 answer

Solr 1.4 Date Facet Include

My goal is to get a document count for each month over the past year. Here is the faceted query I am using against Solr…
schmimd04
  • 1,444
  • 3
  • 14
  • 23
0
votes
2 answers

Solr: Sunspot with facet categories

I'm new to Solr, and I don't know if this is the best way to do it: I have some products, that are classified into several categories. The categories are organizied in a hierarchical structure like - Electronics - Computer - Apple -…
23tux
  • 14,104
  • 15
  • 88
  • 187
0
votes
0 answers

Lucene 4 - Faceted Search with Sorting

I am trying to move from lucene 2.4 to 4.4. I had used bobo-browse for faceting in 2.4. I used below code (from Lucene examples) to query documents and get facets. List categories = new ArrayList(); categories.add(new…
goodsanket
  • 13
  • 4
0
votes
1 answer

Solr: How to create Facets based on tags

If you have a look at the following to links, camers are faceted by Mega pixels. Where as Flash memory is faceted by Memory Size. http://www.pricegrabber.com/cameras/digital/p-48/ http://www.pricegrabber.com/computers/flash-memory/p-152/ I guess…
eadam
  • 23,151
  • 18
  • 48
  • 71
0
votes
2 answers

PostgreSQL: Full text search multitenant site, plus only parts of site

I'm developing a multitenant web application, and I want to add full text search, so that people will be able to: 1) search only the site they are currently visiting (but not all sites), and 2) search only a section of that site (e.g. restrict…
KajMagnus
  • 11,308
  • 15
  • 79
  • 127
0
votes
1 answer

Glossary type facet from Node Index

Problem/Motivation I am using Search API with SOLR Search API integration. Currently i have one node index showing content type Listing and one faceted block attached to it (category). My idea is to create another Faceted Block that will filter by…
rinasek
  • 31
  • 4
0
votes
1 answer

solr query with date faceting parameters and field grouping

I am wondering if there's a way to achieve what I want. I did see a post similar to this but without any answers. Solr Facet Query Basically, I have a field named msg_type that can have only three values log, warnings and errors. What I want is a…
dehsams123
  • 251
  • 2
  • 7
  • 18
0
votes
1 answer

Rails queries that consist of counts on associations, preferably with scopes

I've been making a search page for my service, and it includes several association based search parameters, I can think of a few messy long sql mess, but would prefer some cleaner approaches, as a sample, class Person < ActiveRecord::Base has_many…
Saifis
  • 2,197
  • 1
  • 22
  • 36
0
votes
1 answer

how to filter facet to show only specific terms

I want a facet to only show specific terms. I've tried both a filter and a facet_filter of type terms, but both show other terms different from the given in the terms filter. As filter { "query": { "filtered": { "query": {…
sofrito
  • 33
  • 4
0
votes
1 answer

Solr facet date count wrong?

I issue this facet date url: http://10.18.1.85:8080/mcu1fpSE/articleCore/select/?q=*:*&rows=0&indent=true&facet=true&facet.date=PRESENTDATE&facet.date.start=2011-12-01T00:00:00Z&facet.date.end=2012-06-01T23:59:59Z&facet.date.gap=%2B1MONTH The…
Scott Chu
  • 972
  • 14
  • 26
0
votes
1 answer

Drupal Job board: Faceted Search with "OR" operator, but sort results by most matching facet criterias/term count

I'm quite stuck with searching for a solution for my problem and I hope that you can maybe help me. In general I want to build a small job platform. It includes an "Explore"-Section, which is just like a Search-Page with Facets. The actual job-nodes…