123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <?php
-
-
- namespace Doctrine\Common\Cache;
-
-
- class XcacheCache extends AbstractCache
- {
-
-
- public function getIds()
- {
- $this->_checkAuth();
- $keys = array();
-
- for ($i = 0, $count = xcache_count(XC_TYPE_VAR); $i < $count; $i++) {
- $entries = xcache_list(XC_TYPE_VAR, $i);
-
- if (is_array($entries['cache_list'])) {
- foreach ($entries['cache_list'] as $entry) {
- $keys[] = $entry['name'];
- }
- }
- }
-
- return $keys;
- }
-
-
-
- protected function _doFetch($id)
- {
- return $this->_doContains($id) ? unserialize(xcache_get($id)) : false;
- }
-
-
-
- protected function _doContains($id)
- {
- return xcache_isset($id);
- }
-
-
-
- protected function _doSave($id, $data, $lifeTime = 0)
- {
- return xcache_set($id, serialize($data), (int) $lifeTime);
- }
-
-
-
- protected function _doDelete($id)
- {
- return xcache_unset($id);
- }
-
-
-
-
- protected function _checkAuth()
- {
- if (ini_get('xcache.admin.enable_auth')) {
- throw new \BadMethodCallException('To use all features of \Doctrine\Common\Cache\XcacheCache, you must set "xcache.admin.enable_auth" to "Off" in your php.ini.');
- }
- }
- }
|