From 903ae8a581fac1e6917fc3e31d2ad8fb91df80c3 Mon Sep 17 00:00:00 2001 From: ctrlaltca <> Date: Thu, 12 Jul 2012 11:21:01 +0000 Subject: standardize the use of unix eol; use svn properties to enforce native eol --- .../DataMapper/TFastSqlMapApplicationCache.php | 178 ++++++++++----------- 1 file changed, 89 insertions(+), 89 deletions(-) (limited to 'framework/Data/SqlMap/DataMapper/TFastSqlMapApplicationCache.php') diff --git a/framework/Data/SqlMap/DataMapper/TFastSqlMapApplicationCache.php b/framework/Data/SqlMap/DataMapper/TFastSqlMapApplicationCache.php index d780b413..e85c54cf 100644 --- a/framework/Data/SqlMap/DataMapper/TFastSqlMapApplicationCache.php +++ b/framework/Data/SqlMap/DataMapper/TFastSqlMapApplicationCache.php @@ -1,89 +1,89 @@ - - * @link http://www.pradosoft.com/ - * @copyright Copyright © 2005-2012 PradoSoft - * @license http://www.pradosoft.com/license/ - * @version $Id: TFastSqlMapApplicationCache.php 2996 2011-06-20 15:24:57Z ctrlaltca@gmail.com $ - * @package System.Data.SqlMap - */ - -/** - * TFastSqlMapApplicationCache class file - * - * Fast SqlMap result cache class with minimal-concurrency get/set and atomic flush operations - * - * @author Berczi Gabor - * @version $Id: TFastSqlMapApplicationCache.php 2996 2011-06-20 15:24:57Z ctrlaltca@gmail.com $ - * @package System.Data.SqlMap - * @since 3.2 - */ - -class TFastSqlMapApplicationCache implements ICache -{ - protected $_cacheModel=null; - protected $_cache=null; - - public function __construct($cacheModel=null) - { - $this->_cacheModel = $cacheModel; - } - - protected function getBaseKeyKeyName() - { - return 'SqlMapCacheBaseKey::'.$this->_cacheModel->getId(); - } - - protected function getBaseKey() - { - $cache = $this->getCache(); - $keyname = $this->getBaseKeyKeyName(); - $basekey = $cache->get($keyname); - if (!$basekey) - { - $basekey = DxUtil::generateRandomHash(8); - $cache->set($keyname,$basekey); - } - return $basekey; - } - - protected function getCacheKey($key) - { - return $this->getBaseKey().'###'.$key; - } - - public function delete($key) - { - $this->getCache()->delete($this->getCacheKey($key)); - } - - public function flush() - { - $this->getCache()->delete($this->getBaseKeyKeyName()); - } - - public function get($key) - { - $result = $this->getCache()->get($this->getCacheKey($key)); - return $result === false ? null : $result; - } - - public function set($key, $value,$expire=0,$dependency=null) - { - $this->getCache()->set($this->getCacheKey($key), $value, $expire,$dependency); - } - - protected function getCache() - { - if (!$this->_cache) - $this->_cache = Prado::getApplication()->getCache(); - return $this->_cache; - } - - public function add($id,$value,$expire=0,$dependency=null) - { - throw new TSqlMapException('sqlmap_use_set_to_store_cache'); - } -} + + * @link http://www.pradosoft.com/ + * @copyright Copyright © 2005-2012 PradoSoft + * @license http://www.pradosoft.com/license/ + * @version $Id: TFastSqlMapApplicationCache.php 2996 2011-06-20 15:24:57Z ctrlaltca@gmail.com $ + * @package System.Data.SqlMap + */ + +/** + * TFastSqlMapApplicationCache class file + * + * Fast SqlMap result cache class with minimal-concurrency get/set and atomic flush operations + * + * @author Berczi Gabor + * @version $Id: TFastSqlMapApplicationCache.php 2996 2011-06-20 15:24:57Z ctrlaltca@gmail.com $ + * @package System.Data.SqlMap + * @since 3.2 + */ + +class TFastSqlMapApplicationCache implements ICache +{ + protected $_cacheModel=null; + protected $_cache=null; + + public function __construct($cacheModel=null) + { + $this->_cacheModel = $cacheModel; + } + + protected function getBaseKeyKeyName() + { + return 'SqlMapCacheBaseKey::'.$this->_cacheModel->getId(); + } + + protected function getBaseKey() + { + $cache = $this->getCache(); + $keyname = $this->getBaseKeyKeyName(); + $basekey = $cache->get($keyname); + if (!$basekey) + { + $basekey = DxUtil::generateRandomHash(8); + $cache->set($keyname,$basekey); + } + return $basekey; + } + + protected function getCacheKey($key) + { + return $this->getBaseKey().'###'.$key; + } + + public function delete($key) + { + $this->getCache()->delete($this->getCacheKey($key)); + } + + public function flush() + { + $this->getCache()->delete($this->getBaseKeyKeyName()); + } + + public function get($key) + { + $result = $this->getCache()->get($this->getCacheKey($key)); + return $result === false ? null : $result; + } + + public function set($key, $value,$expire=0,$dependency=null) + { + $this->getCache()->set($this->getCacheKey($key), $value, $expire,$dependency); + } + + protected function getCache() + { + if (!$this->_cache) + $this->_cache = Prado::getApplication()->getCache(); + return $this->_cache; + } + + public function add($id,$value,$expire=0,$dependency=null) + { + throw new TSqlMapException('sqlmap_use_set_to_store_cache'); + } +} -- cgit v1.2.3