MediaWiki  REL1_19
XCacheBagOStuff.php
Go to the documentation of this file.
00001 <?php
00002 
00009 class XCacheBagOStuff extends BagOStuff {
00016         public function get( $key ) {
00017                 $val = xcache_get( $key );
00018 
00019                 if ( is_string( $val ) ) {
00020                         $val = unserialize( $val );
00021                 }
00022 
00023                 return $val;
00024         }
00025 
00034         public function set( $key, $value, $expire = 0 ) {
00035                 xcache_set( $key, serialize( $value ), $expire );
00036                 return true;
00037         }
00038 
00046         public function delete( $key, $time = 0 ) {
00047                 xcache_unset( $key );
00048                 return true;
00049         }
00050 }
00051