Vilius Šumskas
Vilius Šumskas
> Everything is up to date and freshly indexed. I have two pages containing the word "geokoordinaten" which is German and stands for Geocoordinates. > > When searching for "geokoordinaten"...
Just tried your link ant it shows 2 same results for "geokoordina" and "geokoo".
I don't know enough about German language but the difference between "geokoordina" and "geokoordinat" looks like really a stemmer issue. Setting stemmer to 'no' should return the same results for...
Without stemmer: `[]# php -r " include('Stemmer.php'); require_once ('NoStemmer.php'); echo TeamTNT\TNTSearch\Stemmer\NoStemmer::stem('geokoordina').PHP_EOL;"` geokoordina `[]# php -r " include('Stemmer.php'); require_once ('NoStemmer.php'); echo TeamTNT\TNTSearch\Stemmer\NoStemmer::stem('geokoordinat').PHP_EOL;"` geokoordinat `[]# php -r " include('Stemmer.php'); require_once ('NoStemmer.php'); echo...
Did you rebuild index after disabling the stemmer? Delete old index file fully. Again this looks like a German stemmer issue: `[]# php -r " include('Stemmer.php'); require_once ('GermanStemmer.php'); echo TeamTNT\TNTSearch\Stemmer\GermanStemmer::stem('spectr').PHP_EOL;"...
Interesting indeed. Could be related to https://github.com/trilbymedia/grav-plugin-tntsearch/pull/116 which is still waiting for merge, unfortunately. Also check https://github.com/teamtnt/tntsearch/pull/243/files . Not sure which Grav version you are using and how up-to-date TNTSearch...
@bgdnlp try with patches in https://github.com/teamtnt/tntsearch/pull/243/files and #116
@thekenshow your case is different than this issue. This issue deals with stemmer which operates only on normal words. If the numbers are involved you should create a separate issue...
Are you using fuzzy search? Try playing with tntsearch settings a bit to see if one of them makes a difference. That would at least help pinpoint the part of...
I can confirm that there is something strange going on with searches which include numbers. Let's day I have these 2 data points. "7777777" "777777777777" If I search for 777...