Yes, that is what is happening. If you disable the prefix processing it should work. Prefixes are disabled by default as they are generally less useful, since they can cause issues, such as the "pro" prefix being applied here.
Thanks!!
Just to be sure, the search for 'problem' after all the suffix and prefix stripping finally searches for 'blem' in the data. Does texis search for *blem* or just blem?
if so, how does the search for 'receive' work? we have ve in the suffix list. So, it will be stripped to 'recei' and does Texis search for recei*? Because we do get receive and receiver as hits.
In the case of the first part, searching for words ending in blem, does texis do linear or indexed search?
It looks like prefix processing will always create problems. is that right?
also, in the case of the second search, looking for words beginning with rece, does texis do linear or indexed search?
Suffix alone, I am more comfortable with.
Oh, I forgot to mention,in the first scenario, I said prefix stripping may not work because,
we have data which has just the word 'problem' along with the word 'problematic'.
Only prefix searching, case 2(suffix stripping) can use an index. Suffix searching, case 1(prefix stripping) can not use an index and will be linear. Middle searching (where both prefixes and suffixes have been removed) will also be linear. The index/linear behavior is basically the same as with wildcards: *word and *word* are linear, word* uses an index.
Prefixes have a tendency to change the meaning of a word anyhow.
Sorry, I have one more question on this.
As I said earlier, the data also has the problem just by itself.
Why did not the linear search for *blem find the record as a hit?
our wordc and langc are
wordc=\alnum\X24
langc=\alnum\X24 \-
Did you enable linear searching? It's off by default. View the source of the results page and see what errors or warnings you're getting in html comments. What are your precise settings and query? What's the excerpt of text around the word "problem"?