Adam,<div><br></div><div>Wouldn&#39;t APC cache help in this case?</div><div><br></div><div>Regards,</div><div>Prasad<br><br><div class="gmail_quote">On Fri, May 11, 2012 at 10:52 PM, Adam Heinz <span dir="ltr">&lt;<a href="mailto:amh@metricwise.net" target="_blank">amh@metricwise.net</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">On Fri, May 11, 2012 at 12:30 PM, Alan Lord (News) &lt;<a href="mailto:alanslists@gmail.com">alanslists@gmail.com</a>&gt; wrote:<br>


&gt; PHP Fatal error:  Allowed memory size of 67108864 bytes exhausted<br>
<br>
</div>This is systemic of many PHP applications.  Due to the require_once<br>
nature of imports, after a while you tend to include the world on<br>
every page load.  One of the better efforts I&#39;ve seen to combat this<br>
is the jimport/autoload architecture in Joomla!, which makes all class<br>
loading lazy.  The primary advantage of this is that you get your<br>
memory consumption down, but at the expense of run time errors if you<br>
don&#39;t keep your imports squeaky clean.<br>
<br>
_______________________________________________<br>
<a href="http://www.vtiger.com/" target="_blank">http://www.vtiger.com/</a><br>
</blockquote></div><br></div>