November Happy Hour will be moved to Thursday December 5th.
November Happy Hour will be moved to Thursday December 5th.
Product version: |
EPiServer Framework 6.1 / 6.2 |
---|---|
Document last saved: |
Configuration for the EPiServer FTS Service is found in the “EPiServer.Search.IndexingService” section in the web.config and is accessible via properties on EPiServer.Search.IndexingService.IndexingServiceSettings. Most of the values have defaults and are not required. Below are tables for section and element names and their defaults.
Attribute |
Type | Default Value |
Comment |
---|---|---|---|
autoUpdateVirtualPath |
bool | true |
Indicates whether to automatically update all sub nodes when a parent node is changed. This could potentially affect performance with many documents in the index and a node at root level is changed. |
maxDisplayTextLength |
int |
500 |
Maximum number of characters allowed in the DisplayText field. If DisplayText field succeeds this length, the content will be cut and the remaining part will be added to the Metadata field. |
maxHitsForReferenceSearch |
int |
10000 |
Maximum number of hits to be returned internally within the service when updating referenced documents or virtual path nodes |
maxHitsForSearchResults |
int |
1000 |
Maximum number of hits to be returned internally within the service when preparing a search response |
Element | Type | Comment |
---|---|---|
clients |
ClientCollection |
A collection of client elements that define which clients are allowed to communicate with the indexing service. |
namedIndexes |
NamedIndexesElement | Contains the collection of indexes and defines the default index to be used. |
Each client element contains an IP address or address range from which clients are allowed to connect to the indexing service.
Name |
Type |
Default Value |
Comment |
---|---|---|---|
allowLocal |
bool |
false |
Indicates whether the service should accept connection from all local interfaces. |
description |
string |
|
Description associated with this client. |
ipAddress |
string |
|
IPv4 address or range used to authenticate the client. |
ip6Address |
string |
|
IPv6 address or range used to authenticate the client. |
name |
string |
Required key attribute, |
Name of the configured client that have access to this service. |
readonly |
bool |
Required, |
Indicates whether the client is allowed to modify the index. |
The namedIndexes element acts as a container for the index colletion. This element only has one attribute - defaultIndex - which should reference one of the indexes in the indexes collection. The referenced index is the one that will be used if no specific index is requested.
Name |
Type | Default Value |
Comment |
---|---|---|---|
defaultIndex |
string |
Required, |
Name of the configured named index that should be the default index to use. |
Element | Type | Comment |
---|---|---|
indexes |
NamedIndexCollection |
Container for a collection of NamedIndex elements. |
Each index element defines settings for one index hosted by the indexing serivice.
Name |
Type | Default Value |
Comment |
---|---|---|---|
directoryPath | string |
Required key attribute, |
Path where the associated Lucene index files are stored. |
name | string |
Required key attribute, |
Name of the index. |
pendingDeletesOptimizeThreshold | int | 100 | The number of delete operations that need to occur before the index is optimized. |
readonly | bool | false |
Indicates whether the named index can be modified. |
aclFieldInResponse |
bool | true |
Indicates whether the contents of the respective fields should be included in the search response. |
authorFieldInResponse |
|||
categoriesFieldInResponse |
|||
createdFieldInResponse |
|||
cultureFieldInResponse |
|||
displayTextFieldInResponse |
|||
idFieldInResponse |
|||
itemStatusFieldInResponse |
|||
metadataFieldInResponse |
false | ||
modifiedFieldInResponse |
true | ||
publicationEndFieldInResponse |
|||
publicationStartFieldInResponse |
|||
referenceIdFieldInResponse |
|||
titleFieldInResponse |
|||
typeFieldInResponse |
|||
uriFieldInResponse |
|||
virtualPathFieldInResponse |
See also the following: