SQLAlchemy has a .match()
function that helps to search full-text. However, the default search is in BOOLEAN MODE
. How can I change the BOOLEAN MODE
to NATURAL LANGUAGE MODE
?
Reason for doing this is because I need to search for hyphenated text and periods. I know there is this source: MySQL Full Text Period However, I don't want to change any source file or configure my MySQL settings.
How to change .match()
function to NATURAL LANGUAGE MODE
?