- Sep 3, 2005
- 8,794
- 7,531
Elasticsearch is once again installed on ChalkBucket (hopefully to stay depending on cost). The search results should now be drastically better. Right now we have "stop words" turned on... this means that the following words are excluded from search...
"Word stemming" is also turned on.
We are also enabling "accent removal and character simplification".
We do not have any "weighting" of content or dates so all content on ChalkBucket is searched equally.
You are now also able to use Elasticsearch "Simple Query String Syntax"
Please let me know what questions you have and I will try to answer them.
a, an, and, are, as, at, be, but, by, for, if, in, into, is, it, no, not, of, on, or, such, that, the, their, then, there, these, they, this, to, was, will, with
"Word stemming" is also turned on.
Word stemming can improve searching by allowing multiple forms of a word to match. For example, a search for "test" would equally match "tests", "testing", "tested", and so on.
We are also enabling "accent removal and character simplification".
If enabled, before indexing, accents will be removed and other complex character representations converted to simpler ones. This can improve search results by allowing multiple accent variations (esta, está) of a word to match. However, it can also make words match unexpectedly when they differ only by accents.
We do not have any "weighting" of content or dates so all content on ChalkBucket is searched equally.
You are now also able to use Elasticsearch "Simple Query String Syntax"
The simple_query_string supports the following special characters:
- + signifies AND operation
- | signifies OR operation
- - negates a single token
- " wraps a number of tokens to signify a phrase for searching
Please let me know what questions you have and I will try to answer them.