123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- <?php
- /**
- * [WeEngine System] Copyright (c) 2014 WE7.CC
- * WeEngine is NOT a free software, it under the license terms, visited http://www.we7.cc/ for more details.
- */
- defined('IN_IA') or exit('Access Denied');
- function cache_redis() {
- global $_W;
- static $redisobj;
- if (!extension_loaded('redis')) {
- return error(1, 'Class Redis is not found');
- }
- $config = $_W['config']['setting']['redis'];
- if (empty($redisobj)) {
- $redisobj = new Redis();
- try {
- if ($config['pconnect']) {
- $redisobj->pconnect($config['server'], $config['port']);
- } else {
- $redisobj->connect($config['server'], $config['port']);
- }
- if (!empty($config['auth'])) {
- $redisobj->auth($config['auth']);
- }
- } catch (Exception $e) {
- return error(-1, 'redis连接失败,错误信息:' . $e->getMessage());
- }
- }
- if (defined('IN_MODULE') && !empty($config['db']) && is_array($config['db']) && in_array(IN_MODULE, array_keys($config['db']))) {
- $redisobj->select($config['db'][IN_MODULE]);
- } elseif (!empty($config['db']['system'])) {
- $redisobj->select($config['db']['system']);
- }
- return $redisobj;
- }
- function cache_read($key) {
- $redis = cache_redis();
- if (is_error($redis)) {
- return $redis;
- }
- if ($redis->exists(cache_prefix($key))) {
- $data = $redis->get(cache_prefix($key));
- $data = iunserializer($data);
- return $data;
- }
- return '';
- }
- function cache_search($key) {
- $redis = cache_redis();
- if (is_error($redis)) {
- return $redis;
- }
- $search_keys = $redis->keys(cache_prefix($key) . '*');
- $search_data = array();
- if (!empty($search_keys)) {
- foreach ($search_keys as $search_value) {
- $search_data[$search_value] = iunserializer($redis->get($search_value));
- }
- }
- return $search_data;
- }
- function cache_write($key, $value, $ttl = 0) {
- $redis = cache_redis();
- if (is_error($redis)) {
- return $redis;
- }
- $value = iserializer($value);
- if (empty($ttl)) {
- $result = $redis->set(cache_prefix($key), $value);
- } else {
- $result = $redis->set(cache_prefix($key), $value, $ttl);
- }
- if ($result) {
- return true;
- }
- return false;
- }
- function cache_delete($key) {
- $redis = cache_redis();
- if (is_error($redis)) {
- return $redis;
- }
- $cache_relation_keys = cache_relation_keys($key);
- if (is_error($cache_relation_keys)) {
- return $cache_relation_keys;
- }
- if (is_array($cache_relation_keys) && !empty($cache_relation_keys)) {
- foreach ($cache_relation_keys as $key) {
- $cache_info = cache_load($key);
- if (!empty($cache_info)) {
- if (method_exists($redis, 'del')) {
- $result = $redis->del(cache_prefix($key));
- } else {
- $result = $redis->delete(cache_prefix($key));
- }
- if ($result) {
- unset($GLOBALS['_W']['cache'][$key]);
- } else {
- return error(1, '缓存:' . $key . ' 删除失败!');
- }
- }
- }
- }
- return true;
- }
- function cache_clean($key = '') {
- $redis = cache_redis();
- if (is_error($redis)) {
- return $redis;
- }
- if (!empty($key)) {
- $cache_relation_keys = cache_relation_keys($key);
- if (is_error($cache_relation_keys)) {
- return $cache_relation_keys;
- }
- if (is_array($cache_relation_keys) && !empty($cache_relation_keys)) {
- foreach ($cache_relation_keys as $key) {
- preg_match_all('/\:([a-zA-Z0-9\-\_]+)/', $key, $matches);
- if ($keys = $redis->keys(cache_prefix('we7:' . $matches[1][0]) . '*')) {
- unset($GLOBALS['_W']['cache']);
- $res = $redis->delete($keys);
- if (!$res) {
- return error(-1, '缓存 ' . $key . ' 删除失败');
- }
- }
- }
- }
- return true;
- }
- if ($redis->flushDB()) {
- unset($GLOBALS['_W']['cache']);
- return true;
- }
- return false;
- }
- function cache_prefix($key) {
- return $GLOBALS['_W']['config']['setting']['authkey'] . $key;
- }
|