|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?php
-
-
- namespace yii\caching;
-
-
- class ZendDataCache extends Cache
- {
-
-
- protected function getValue($key)
- {
- $result = zend_shm_cache_fetch($key);
-
- return $result === null ? false : $result;
- }
-
-
-
- protected function setValue($key, $value, $duration)
- {
- return zend_shm_cache_store($key, $value, $duration);
- }
-
-
-
- protected function addValue($key, $value, $duration)
- {
- return zend_shm_cache_fetch($key) === null ? $this->setValue($key, $value, $duration) : false;
- }
-
-
-
- protected function deleteValue($key)
- {
- return zend_shm_cache_delete($key);
- }
-
-
-
- protected function flushValues()
- {
- return zend_shm_cache_clear();
- }
- }
|