Sitecore 7 Faceted search (front-end), no SOLR -


i not able find information, if faceted search works in sitecore 7 no internal search, front-end side.

can business user specify facets, can used site visitor on front-end, using sitecore built-in search , not using solr engine?

did looked @ developers guide item buckets , search? can create facets can used internal search , front-end search also.

5.6.9 creating new search facet

you can use facets drill down more specific results in list of search results. default facets displayed in facets menu on right side of search results. create custom facet, navigate /sitecore/system/settings/buckets/facets item of content tree. right click on facets item , in context menu, click insert, facet. have specify name of field in index, in parameters field in content tab. can apply hierarchical faceting listing many fields separated commas. useful if want facet on, example, clothes type first, , on color...

you can filter facets in linq, eg:

var results = queryable.faceton(d => d.name);  var facets = results.getfacets();  foreach (var category in facets.categories)  {      console.writeline(category .name);      foreach (var facetvalue in category.values)      {           console.writeline("{0}: {1}", facetvalue.name, facetvalue.aggregate);      }  } 

also @ sitecore-7 partner webinair

you can use tags search.


Comments

Popular posts from this blog

PySide and Qt Properties: Connecting signals from Python to QML -

c# - DevExpress.Wpf.Grid.InfiniteGridSizeException was unhandled -

scala - 'wrong top statement declaration' when using slick in IntelliJ -