I need to optimize the use of table article_search_index
Sniffing full text search for the word "pluto" from web interface I see this filter:Article_value is of type mediumtext so I cannot create an index.
But I can create a fulltext index
To use the fulltext index the query must be:My question is: there is a method to activate MATCH ... AGAINST filter directly from system configuration or I need to chenge the code?
thanks
Sniffing full text search for the word "pluto" from web interface I see this filter:
Code:
where ArticleFulltext.article_value like '%pluto%'
But I can create a fulltext index
To use the fulltext index the query must be:
Code:
MATCH(ArticleFulltext.article_value) AGAINST ('pluto' IN BOOLEAN MODE)
thanks
Statistics: Posted by rodolfor — 27 Jan 2025, 12:23 — Replies 0 — Views 26