Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
EPiServer Commerce includes an extensive system wide search engine. Any information can be made available to the search engine, even if that information is not in the EPiServer Commerce database. Some systems such as Catalog and Orders, also have specific additional search features.
EPiServer Commerce has its own plugable API for search providers. The search engine itself is based on the ASP.NET provider modelmeaning you can write your own providers to search servers. EPiServer Commerce comes with providers for Lucene and SOLR. EPiServer Commerce can also be integrated with EPiServer Find, to create more advanced search-based navigation and filtering for websites.
Classes referred to here are available in the following namespaces:
EPiServer Commerce has a layer built on top of Lucene for easy integration. There is a MediachaseSearch layer to provide a base layer to simplify the interface. This base can be used to create an index for any data source, while you still have access to the Lucene classes. Searchable data is written to a file index.
SearchExtensions provides a catalog indexing and searching implementation using the MediachaseSearch layer. This is built into Commerce Manager and includes several controls making use of this implementation. You can create you own search implementations on top of MediachaseSearch.
In order for the data to be available it will first be indexed. The indexing is done by the call to the Mediachase.Search.SearchManager.BuildIndex(bool rebuild) method. This method is called by either clicking "Build" or "Rebuild" buttons in the Commerce Manager or through the Quartz service that calls BuildIndex method on the predefined schedule.
The individual indexer implementations are defined in the mediachase.search.config file. The default catalog indexer included, Mediachase.Search.Extensions.Indexers.CatalogIndexBuilder, Mediachase.Search.Extensions, reads the catalog data and calls the SearchProvider.Index(string applicationName, string scope, ISearchDocument document) method.
The method must be implemented by the provider that is currently configured. The provider will be passed an ISearchDocument containing the properties that need to be indexed. You can either replace the indexer completely or extend the existing indexer by inheriting CatalogIndexBuilder class and overriding OnCatalogEntryIndex method. New indexers can also be added.
By default the indexer only populates fields that are marked searchable in the meta configuration as well as some of the system fields like price, name and code. Depending on the provider, additional configuration changes need to be made for those fields to make it to the index.
Calling BuildIndex with rebuild = false will only add indexes that has changed since the last index was created. The system keeps track of when the last index was performed using the ".build" file. Location of the ".build" file is configured inside Mediachase.Search.config file for each indexer defined.
Example: build index command
1 SearchManager searchManager = new SearchManager(applicationName); 2 searchManager.BuildIndex(false);
Catalog meta data fields have options that allow you to specify:
When the data has been indexed, this index will be searched. Search is done by calling the ISearchResults Mediachase.Search.Search(ISearchCriteria criteria) method. The method call is handled by the configured search provider and returns the ISearchResults interface.
Example: simple catalog search
1 CatalogEntrySearchCriteria criteria = new CatalogEntrySearchCriteria(); 2 criteria.SearchPhrase = "canon"; 3 SearchManager manager = new SearchManager(AppContext.Current.ApplicationName); 4 SearchResults results = manager.Search(criteria);
The search phrase can contain complex search syntax that is specific to a provider used.
Another capability extending the Lucene.NET functionality is the ability to create Facets, which is a type of filtering that can be used to further narrow a search. In the configuration file, facets such as SimpleValue, PriceRangeValue, and RangeValue types can be found.
Facets are organized into facet groups. A facet group is referred to as a Filter in the config file. For instance, a facet group would be Color, and a facet would then be Red. In the configuration, Color would be the filter and Red would be a SimpleValue. A facet group is linked to a particular field or meta field. Facets can be specified as part of the ISearchCriteria interface.
The front end includes controls that read special configuration file to automatically populate the facet property of the ISearchCriteria interface. These filters are stored in Mediachase.Search.Filters.config. To add a new filter simply add new field into index and add a record to the config file. The filter will appear as soon as the data is available.
Last updated: Oct 21, 2014