00001 <?php
00002
00003
00004
00005
00006
00007
00008 class XCacheSession implements ISessionHandler {
00009
00010
00011
00012 public function open($save_path, $session_name) {
00013 return true;
00014 }
00015
00016
00017
00018
00019 public function close() {
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 return true;
00030 }
00031
00032
00033
00034
00035 public function read($key) {
00036
00037
00038
00039 register_shutdown_function('session_write_close');
00040 $key = $this->create_key($key);
00041 if (xcache_isset($key)) {
00042 return xcache_get($key);
00043 }
00044 return '';
00045 }
00046
00047
00048
00049
00050 public function write($key, $value) {
00051 try {
00052 xcache_set($this->create_key($key), $value, ini_get('session.gc_maxlifetime'));
00053 return true;
00054 }
00055 catch(Exception $ex) {
00056 return false;
00057 }
00058 }
00059
00060
00061
00062
00063 public function destroy($key) {
00064 xcache_unset($this->create_key($key));
00065 }
00066
00067
00068
00069
00070 public function gc($lifetime) {
00071
00072 return true;
00073 }
00074
00075 protected function create_key($key) {
00076 return 'g$s' . Config::get_url(Config::URL_DOMAIN) . '_' . $key;
00077 }
00078 }