I noticed that the search does not work with words where 1 or 2 letters. How to fix it?
search does not work with words where 1 or 2 letters
Right, that's how mariadb's full text search works. For more info see: https://github.com/appwrite/appwrite/discussions/5005#discussioncomment-4681079.
The only way to change this would be to change this: https://mariadb.com/kb/en/innodb-system-variables/#innodb_ft_max_token_size
Understand, but how can I change this param innodb_ft_min_token_size?
I think by running a SQL command. You can look it up online
Recommended threads
- Having issues with login via CLI
``` ~/appwrite appwrite login --endpoint https://localhost/v1 --verbose ? Enter your email myvalidemai...
- Attributes Confusion
```import 'package:appwrite/models.dart'; class OrdersModel { String id, email, name, phone, status, user_id, address; int discount, total, created_at; L...
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...