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
The EPiServer.Search.IndexingService assembly contains the following namespaces:
The EPiServer FTS Service defines the following REST endpoints:
Endpoint | Method | Comment |
---|---|---|
[baseUri]/update/ ?accessKey={accessKey} |
POST | Accepts an Atom feed with feed items to add to the index where:
|
[baseUri]/search/ ?q={q} &namedindexes={namedindexes} &format=xml &offset={offset} &limit={limit} &accesskey={accesskey} |
GET | Returns an Atom feed with feed items corresponding to hits in the index where:
|
[baseUri]/reset/ ?namedindex={namedindex} &accessKey={accessKey} |
POST | Wipes all content for the passed named index |
[baseUri]/namedindexes/ ?accesskey={accesskey} |
GET | Returns an Atom feed with items corresponding to the configured named indexes for the service |
When the ReferenceId extension contains a value, the EPiServer FTS Service will perceive this as not a standalone item, but an item that belongs to another item already in the index. An example is comments in EPiServer Community. The default behavior there is that when a comment is added to the index, the ReferenceId is set to the commented entity and when a query expression matched the contents of the comment, the commented entity will be returns as the IndexResponseItem and not the comment itself.
Any IndexRequestItem with IndexAction.Add and with a ReferenceId set, will be added to the reference index automatically created for all configured indexes with the suffix “_ref”. The search engine will internally find the parent item corresponding to the ReferenceId (by ID) and update it so that all contents of any items in the “_ref” index for the parent item is added to the parent item searchable meta data. In this way there is no need to send all data over and over when updating the entity client side. This means that you cannot search specific field in reference data since all default searchable fields chunked together and added to the main items metadata.
You cannot update the reference id property for an item once it is added. All items with theIndexActionUpdate or Remove will automatically update its parent in the index if it was originally added with the reference ID set.
Content in files will be indexed, the installed Ifilters will decide which files will be included.
When the DataUri extension contains a value, the EPiServer FTS Service will immediately enqueue the whole request (in memory queue). Dequeuening of a DataUri request results in a call to the URI where the contents is concatenated to the IndexRequestItem.DisplayText and IndexRequestItem.MetaData according to the configured value of maxDisplayTextLength.
The EPiServer FTS Service currently only supports File Uri’s and where the file needs to be accessible locally from the service perspective. The behavior may be overridden by overriding the GetFileUriContent(Uri) method and/or GetNonFileUriContent(Uri) in the IndexingServiceHandler.
The EPiServer FTS Service allows for configure multiple indexes which can be used where there is an obvious separation of indexed content or where the there is an existing (Lucene compatible) index that is updated from a different source. Multiple named indexes needs to be configured so that the fields for the index documents maps to the pre-defined field names in the service, see the Configuring TFS Service document.
When updating the index, the target index (by name) is specified in the NamedIndex attribute extension of the Atom formatted request. When searching the index, multiple indexes may be specified in the request and the EPiServer FTS Service will search each one of the specified index and return a merged result set. If no named index is specified, the default index will always be used.
The VirtualPath feature enables structuring of indexed content in a tree structure where searches can be made under a certain tree node. This is accomplished by storing the literal path together with the index document and searching the index with a path with a trailing wildcard. The path always (when updating or searching) includes the full path from the root and up. For example: A document stored with the VirtualPath field set to “node1/node2” would be a valid hit when searching for documents with the path “node1” or “node1/node2”. However, it would not be considered if the path only specified “node2”. If the IndexRequestItem.AutoUpdateVirtualPath attribute is set when updating or removing an item the VirtualPath is used to update or remove all items under the provided node.
Paging of search results can be made at the service or at the client. Default configuration (useIndexingServicePaging=true) states that the paging should be done in the service hence only returning max numbers if items equal to the passed pageSize. Changing this setting to client paging can potentially imply that the max numbers of items returned by the service is equal to the configured maxHitsFromIndexingService(default 500). The client paging option may be considered when filter providers are configured, and paging needs to be intact.
The EPiServer FTS Service only handles plain text and does not understand any markup language as HTML and cannot thus calculate relevance based on markup (such as <h1> <b> etc).
The EPiServer FTS Service does not do web crawling nor any automatic updates. All indexed content is pushed into the service and thus handing over all the responsibility of keeping the index updated to the client.
The loose couplings between the FTS Client and Service allows for third party search engines to implement solutions compatible with the FTS Client independent of platform. The only requirement is to comply with the REST service endpoint specifications. For .NET environments, this can be done by overriding the UpdateIndex, GetSearchResults, GetNamedIndexes and ResetNamedIndex methods in the IndexingServiceHandler, thus using the existing WCF REST service implementation.
Last updated: Feb 23, 2015