|
Why are you concerned specifically about memory? Is your site slow, or do you just want to eek out all the performance possible? If you don't know what your page load times are like, then figuring that out is the first step so you have a baseline to work with. I recommend NewRelic, since it's really easy to use and gives you a ton of information.
Anyway, to actually answer your question, if you have APC running and no OOM memory problems, then you're pretty close to optimal when it comes to the PHP level. I'd look at the web server (Apache/Nginx) level instead. Adding more workers (e.g. if you use Apache prefork) often gives a boost in throughput, though you're not likely to notice that with a low-traffic site.
|