Difference between revisions of "Drupal Performance"
From Wasya Wiki
| Line 13: | Line 13: | ||
# skip-name-resolve | # skip-name-resolve | ||
max_connections = 300 | max_connections = 300 | ||
| + | |||
| + | = part IV = | ||
| + | |||
| + | curl -o /dev/null -s \ | ||
| + | -w 'dns=%{time_namelookup} connect=%{time_connect} tls=%{time_appconnect} ttfb=%{time_starttransfer} total=%{time_total}\n' \ | ||
| + | https://piousbox.com/issues/2025q2-issue | ||
Revision as of 01:41, 8 May 2026
Add these to settings.php:
$settings['cache']['bins']['render'] = 'cache.backend.database' $settings['cache']['bins']['dynamic_page_cache'] = 'cache.backend.database' $settings['cache']['bins']['page'] = 'cache.backend.database'
reconfigure /etc/mysql/conf.d/docker.conf
[mysqld] # skip-host-cache # skip-name-resolve max_connections = 300
part IV
curl -o /dev/null -s \
-w 'dns=%{time_namelookup} connect=%{time_connect} tls=%{time_appconnect} ttfb=%{time_starttransfer} total=%{time_total}\n' \
https://piousbox.com/issues/2025q2-issue