Hello everyone, I have a slowdown in my osticket system when searching for a specific name or moving from one page to another. Is there a solution?
I have a slowdown in my osticket system
There are a couple of things you can do:
- Convert any MyISAM tables to InnoDB.
- Set
ROW_FORMAT=DYNAMIC
on all tables that don't already have this set. - Update your
innodb_buffer_pool_size
value. - Run
ANALYZE TABLE table_name PERSISTENT FOR ALL;
for each table. Just replacetable_name
with each table's name. - If running MariaDB 10.5 or greater I'd suggest switching to MySQL. Out-of-the-box MySQL seems to have better performance.
If you do all that and it's still slow you will just have to optimize MySQL/MariaDB (or give your server more resources so it can handle more load):
Cheers.