Ignore:
Timestamp:
01/10/12 11:25:51 (12 years ago)
Author:
wmerlotto
Message:

Ticket #2434 - Commit inicial do novo módulo de agenda do Expresso - expressoCalendar

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/prototype/app/cache/MemoryCache.php

    r5136 r5341  
    7272        file_put_contents( "/tmp/cache.log", file_get_contents( "/tmp/cache.log" ) . $output . "\n" ); 
    7373 
    74         if($compressed) 
    75             return $this->_memcache->set($id, $data, MEMCACHE_COMPRESSED, $expire); 
    76         else 
    77             return $this->_memcache->set($id, $data, 0, $expire); 
     74//         if($compressed) 
     75//             return $this->_memcache->set($id, $data, MEMCACHE_COMPRESSED, $expire); 
     76//         else 
     77//             return $this->_memcache->set($id, $data, 0, $expire); 
     78        return false; 
    7879    } 
    7980 
     
    8687    public function get($id){ 
    8788      
    88         $return = $this->_memcache->get($id); 
     89//         $return = $this->_memcache->get($id); 
     90          $return = false; 
    8991 
    9092        if( $return ){ 
Note: See TracChangeset for help on using the changeset viewer.