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

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": "Server1/Some/C.doc"}, {"Url": "Server2/A.doc"}, {"Url":…
Basic
  • 26,321
  • 24
  • 115
  • 201
0
votes
1 answer

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: https://gist.github.com/svickers/5a29a4e32a24b1576ae3#file-ravenfacets
scott
  • 385
  • 4
  • 8
0
votes
1 answer

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 "BLACK", "Black", "Black ", which leads to 3…
FUD
  • 5,114
  • 7
  • 39
  • 61
0
votes
1 answer

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) - Los Angeles (22) - Chicago (20) -…
Amyth
  • 32,527
  • 26
  • 93
  • 135
0
votes
1 answer

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 video_id value is same in different docs,so i want…
sanjib
  • 1
  • 3
0
votes
0 answers

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 help writing some jQuery that will take the value of…
NiceUX
  • 57
  • 5
0
votes
1 answer

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 should contain at least 5 products of each type, if…
user1556622
0
votes
1 answer

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. Is there some library for this stuff? Thanks!
Integral
  • 115
  • 1
  • 8
0
votes
0 answers

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 show Product in search list and facets list if…
0
votes
1 answer

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 attributes b and c if a user chooses attribute "a" only,…
Guy Bowden
  • 4,997
  • 5
  • 38
  • 58
0
votes
1 answer

Get the size of the documents in solr

I have a set of solr documents, for example: 1 1666 A B C 2 765
javabee
  • 85
  • 1
  • 8
0
votes
1 answer

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 search) on my e-commerce shop. 1. I found several…
Dimitry
  • 359
  • 4
  • 13
0
votes
1 answer

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 content repository. Does Jackrabbit provide any out of…
Rocky
  • 941
  • 7
  • 11
0
votes
1 answer

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 we have only ~1500 products. Googlebot seems to…
0
votes
0 answers

how to boost Lucene facets?

Is there a way to add a boosting factor to a facet in Lucene? Something like: List facetCategories = new ArrayList(); for (MyFeature f : allFeatures) { **Double boost = f.getBoost();** facetCategories.add(new…
Renaud
  • 16,073
  • 6
  • 81
  • 79