Jump to content

Zend Cache - Caching HTML


maheshs4677

Recommended Posts

Hi All,

 

I've just started using Zend Cache. I am trying to store an entire HTML in the cache, however it is not storing anything. Here is my code, any help much appreciated.

<?php
   include_once "Zend/Cache.php";   
   include_once 'f1.php';
      
   $frontendOptions = array('lifetime' => 6,'automatic_serialization' => true);
   $backendOptions = array('cache_dir' => '/tmp/');
   $cache = Zend_Cache::factory('Output', 'File', $frontendOptions, $backendOptions);

   $pageid = 'MYTEST';
   
   ZendCacheData($pageid);
/******************* ZEND CACHE FUNCTIONS *****************************/

function ZendCacheData( $pageid )
{
   global $cache;
         
   if (!($cache->test($pageid)))
   {
      // ShowMainMarkets1() Function returns an HTML paqe
      $returnData = ShowMainMarkets1();
      $cache->save( $returnData, $pageid );
      
   } else {
      $returnData = $cache->load($pageid);
      $returnData = $returnData;
   }

   echo $returnData;
}
?>

 

Link to comment
Share on other sites

Thanks very much. I solved it by still using ob_start() and ob_get_contents() as the function I called was outputting HTML and the $returnData was always empty due to that.  The code change is as follows.

ob_start();
ShowMainMarkets1();
$dataStr = "'" . ob_get_contents() . "'";
$cache->save( $dataStr, $pageid );
ob_clean();

 

Hope this is appropriate usage. If you think, Core is better suited for my needs, please let me know and I will re-code and see what happens. Thanks again!

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.