A RECSEARCH_CONFIG element sets up the configuration of attributes for record searches.
Record searches search against the text collection that consists of the names of all the attribute values in the data set.
<!ELEMENT RECSEARCH_CONFIG ( COMMENT? , SEARCH_INTERFACE* ) > <!ATTLIST RECSEARCH_CONFIG WORD_INTERP (TRUE | FALSE) "FALSE" >
The RECSEARCH_CONFIG element has the following attributes.
WORD_INTERP
Specifies whether to enable word interpretation forms (see-also suggestions) of user query terms considered by the text search engine while processing record search requests. The default value is FALSE.
The following table provides a brief overview of the RECSEARCH_CONFIG sub-elements.
Sub-element | Brief description |
---|---|
COMMENT | Associates a comment with a parent element and preserves the comment when the file is rewritten. This element provides an alternative to using inline XML comments of the form <!-- ... -->. |
SEARCH_INTERFACE | Represents a named collection of standard and/or managed attributes. |
This example shows the configuration for a business implementation.
<RECSEARCH_CONFIG> <SEARCH_INTERFACE CROSS_FIELD_BOUNDARY="NEVER" CROSS_FIELD_RELEVANCE_RANK="0" DEFAULT_RELRANK_STRATEGY="All" NAME="All"> <MEMBER_NAME RELEVANCE_RANK="4">ProductType</MEMBER_NAME> <MEMBER_NAME RELEVANCE_RANK="3">Name</MEMBER_NAME> <MEMBER_NAME RELEVANCE_RANK="2">Region</MEMBER_NAME> <MEMBER_NAME RELEVANCE_RANK="1">Description</MEMBER_NAME> </SEARCH_INTERFACE> </RECSEARCH_CONFIG>