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
- Weird permission failure
when creating an account I use following methods: ``` Future<void> register(String email, String password, String username) async { final user = await accoun...
- Relation Question
How do I create a relation from table y to an others x.$id. in my example I have a users table where I use Appwrites unique User IDs and I want other tables fo...
- Unknown attribute type: varchar / text
Since the `string` type is deprecated I tried using `varchar` and `text` in some newer tables, but when running `appwrite pull tables && appwrite types ./src/li...