psquillace Posted December 24, 2007 Share Posted December 24, 2007 Hello All: i wanted to get an idea about what kind of load we are talking about when this is kept on all the time in your php.ini file. I know it makes my life easier knowing that this is on all the time and not having to worry too much about if there is whitespace in front of my headers but the statement in the php.ini file says how it will slow down php a bit if it is left on. How much resources is this actually going to use if it is on all the time, or am I missing the big picture on this one? Thanks for your thoughts and input, Paul Quote Link to comment https://forums.phpfreaks.com/topic/82989-solved-output-buffering-turned-on/ Share on other sites More sharing options...
trq Posted December 24, 2007 Share Posted December 24, 2007 All output of each request will be stored in memory untill your output is sent. Its probably not a good idea to have it on. Quote Link to comment https://forums.phpfreaks.com/topic/82989-solved-output-buffering-turned-on/#findComment-422089 Share on other sites More sharing options...
psquillace Posted December 24, 2007 Author Share Posted December 24, 2007 hrmm, thanks thorp so you think it is best to just keep it off and keep saying ob_start(); each time I need it? I figured what harm is it doing with only 4096k set as the max Quote Link to comment https://forums.phpfreaks.com/topic/82989-solved-output-buffering-turned-on/#findComment-422090 Share on other sites More sharing options...
trq Posted December 24, 2007 Share Posted December 24, 2007 I figured what harm is it doing with only 4096k set as the max Im sure that relates to the limit per request. If you have 100 concurrent requests, thats alot of memory. Quote Link to comment https://forums.phpfreaks.com/topic/82989-solved-output-buffering-turned-on/#findComment-422095 Share on other sites More sharing options...
psquillace Posted December 24, 2007 Author Share Posted December 24, 2007 ahhh ok, good point. thanks again for the input. Paul Quote Link to comment https://forums.phpfreaks.com/topic/82989-solved-output-buffering-turned-on/#findComment-422117 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.