run
bench --site sitename mariadb
Copy and paste the below code in the database console
SELECT table_schema as Database, table_name AS Table, round(((data_length + index_length) / 1024 / 1024), 2) Size in MB FROM information_schema.TABLES ORDER BY (data_length + index_length) DESC;
Currently, on a v13 development setup, I have the case that development mode makes a static html file take >2 seconds to load (2 CPUs, 8GB RAM). The system gets completely unusable. Anything that can be done about this?
I have similar problem in development mode a simple search_link request takes > 20 seconds to complete. Did you have any luck speeding up in developer mode?
EDIT: In production mode the speed is completely fine.