The TERMALL field specifier (case sensitive) allows you to find documents with a specified field whose value contains conceptual matches of several terms specified by you. A conceptual match exists if the terms you specify match terms in a specified field after they have been stemmed.
If the language that you are using does not match the that you have specified in the IDOL Server configuration file, you must add the parameter to your query action.
FieldText=TERMALL{yourTerms}:yourFields
yourTerms
|
Type multiple terms. A document is only returned if one of You can match strings that contain punctuation (but see Note below) or consist of several words. NOTE:
To distinguish query syntax punctuation from punctuation within strings, double-percent-encode commas and curly braces within strings. Query syntax punctuation must be left unencoded. There must be no space before or after a separator comma. |
yourFields
|
Type one or more fields. A document is only returned if it contains one of these fields, and if a term in this field conceptually matches one of yourTerms. Separate multiple fields with colons (:). There must be no space before or after a colon. |
FieldText=TERMALL{shopping,centers}:DRETITLE
A document's DRETITLE field value must contain a term that conceptually matches shopping or centers for this document to be returned. If a document's DRETITLE field, for example, has the value town center shop this document is returned.
FieldText=TERMALL{walk,climb}:DRETITLE:TITLE
A document's DRETITLE or TITLE field value must contain a term that conceptually matches walking or climbing for this document to be returned. If a document's DRETITLE or TITLE field, for example, has the value hill walking and rock climbing this document is returned.
|
|