hede wrote: Thanks for the hint.
I still don't understand why the Joomla search detects a different number of chars than the FC search.
It is simply different, but if want to know:
-1- Joomla standard search view (which uses the
Joomla content search plugin) uses:
LIKE %someword%
which allow any word size but is very slow in large sites
-2- FLEXIcontent advanced search view, uses MATCH-AGAINST which on a full indexed column which is fast in large sites, but it will ignore words smaller than
ft_min_word_len
-3- Joomla Smart search view uses a custom CODE match which is even faster, allows small words,
-- but indexing
is very slow on large sites,
-- the search DB tables
tend to become very big
... using smart search in large site is not best option , flexicontent search view will do better, but in very larges site it maybe desirable to use other solutions ...
hede wrote: I was not able to find ft_min_word_len on my WAMPP in any file except for my-innodb-heavy-4G.ini but changing it there did not make any difference.
OK i have updated the FAQ article ...
After changing the value run in phpmyadmin
REPAIR TABLE ppp_flexicontent_items_ext
REPAIR TABLE ppp_flexicontent_advsearch_index
this will make the search indexes to recreated/updated