FTSFLAGS
Combination of full-text search flag bitfields.
Name | Description | Type |
---|---|---|
all | Specifies all flags set; Including any future flags. | boolean |
use_stemming | Enable stemming for all words in the search request. | boolean |
search_all_words | Finds all of the words in the search request. | boolean |
search_any_words | Finds any of the words in the search request. | boolean |
search_metadata | Look matches in the meta data (properties) of documents. | boolean |
search_filedata | Look matches in the file data of documents. | boolean |
Example
{
"all": false,
"use_stemming": false,
"search_all_words": false,
"search_any_words": false,
"search_metadata": false,
"search_filedata": false
}