-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
SQL : Considérer l'indexation du texte complet #302
Copy link
Copy link
Open
Labels
Milestone
Description
FreshRSS dispose maintenant d'une recherche de texte côté base de données suite au patch #204
Néanmoins, cette recherche utilise un LIKE scannant toute la table plutôt que d'utiliser un index qui serait beaucoup plus rapide et permettant des recherches plus intéressantes.
- MySQL 5.6 permet d'avoir en même temps indexation en texte complet (moteur INNODB) ET compression
- MySQL 5.5 permet d'avoir indexation en texte complet (moteur MYISAM) OU compression (moteur INNODB)
http://dev.mysql.com/doc/refman/5.5/en/fulltext-search.html
http://dev.mysql.com/doc/refman/5.5/en/innodb-compression.html
http://dev.mysql.com/doc/refman/5.5/en/glossary.html#glos_compression - MySQL 5.4 et plus vieux permet d'avoir l'indexation en texte complet (moteur MYISAM) mais ne semble pas proposer de compression autre que par la fonction
compress()incompatible avec l'indexation en texte complet http://dev.mysql.com/doc/refman/5.0/en/encryption-functions.html#function_compress
Dans le futur proche, il reste néanmoins souhaitable de supporter MysQL 5.1.
Par exemple, Ubuntu 10.04 LTS avec MySQL 5.1 sera active jusqu'en avril 2015.
Reactions are currently unavailable