Speed up MU Wordpress on Apache VPS?
I have a wordpress multisite 3.6 with 1 main site and 5 subdomains(with mapping domains)
I am tried to make it faster, i install the W3 Total Cache plugin
i add on my apache the APC 3.1.13 yum install httpd-devel pecl install apc
Enable internal debugging in APC [no] : no Enable per request file
info about files used from the APC cache [no] : no Enable spin locks
(EXPERIMENTAL) [no] : no Enable memory protection (EXPERIMENTAL) [no]: no Enable pthread mutexes (default) [no] : yes Enable pthread
read/write locks (EXPERIMENTAL) [yes] : no
edit php.ini after line eaccelerator.shm_ttl=0
apc.enabled=1
apc.shm_segments=1
apc.shm_size=128
apc.ttl=7200
apc.user_ttl=7200
apc.num_files_hint=1024
apc.mmap_file_mask=/tmp/apc.XXXXXX
apc.enable_cli=1
and on my shh add this command lines
service httpd restart
php -r 'phpinfo();' | grep 'apc'
but i can see big difference :/
on gtmetrix (but is not solid everytime that i test)
Before
B (82%)
D (62%)
7.88s
1.67MB
118
After
A (92%) +10%
C (73%) +11%
5.33s -2.55s
1.33MB -344KB
101 -17
on pingdom (but is not solid everytime that i test)
Before
Page size
1.5MB
Load time
3.78s
Requests
133
After
Page size
1.2MB
Load time
2.58s
Requests
129
This my phpinfo and this my w3 total case setup
what I have done wrong and i have something else to add on my server or on my multisite?