<p>There are portions of my PHP application that updates every 5 minutes or so.&nbsp; Thus I think it&#39;s a great candidate for caching, as opposed to having the server refresh that portion every time there&#39;s a query.</p>

<p>As far as I&#39;m aware, there isn&#39;t a PHP partial page caching available is there?&nbsp; </p>
<p>So, I&#39;m thinking of using Memcache instead.&nbsp; Now, I can cache the SQL queries, or I can cach that portion of the page (with html rendered).&nbsp; However, if caching that portion, it would mean more internal LAN traffic for every page view request.
</p>
<p>Anyone know what I should do here?</p>