I have a website with 200 000 visits in day, and using php output buffer, I have a questions:
With these number of hits, is the use of output buffering, right or not?
I use MVC Framework and i should using output buffer!
I have a website with 200 000 visits in day, and using php output buffer, I have a questions:
With these number of hits, is the use of output buffering, right or not?
I use MVC Framework and i should using output buffer!
Output buffering never hurts, depending on what you're caching and if you want it to expire. I would use Memcache or APC, cache your pages for a certain period of time. Use a conventional Key system for proper identifiers on each page or resource and create triggers when something is updated to automatically reset the cache. (Use a PEAR Daemon for instance)
If it's a lot of database utilization, I would just cache data sets and let the pages serve up naturally. With APC, you're already freeing up a lot of I/O resources.