get($key); $result = intval($result); } catch (\Exception $ex) { $result = null; } return $result; } /** * 批量获取 * @param array $idList * @return array|null */ public static function mGet(Array $idList) { $keyList = array(); foreach ($idList as $id) { $k = self::getKey($id); $keyList[$k] = $id; } try { $result = array(); $data = self::getConnection()->mget(array_keys($keyList)); $i = 0; foreach ($keyList as $k => $v) { $result[$v] = intval($data[$i]); $i++; } } catch (\Exception $ex) { $result = null; } return $result; } /** * @param $id * @param int $value * @return bool */ public static function set($id, $value) { $key = self::getKey($id); try { $result = self::getConnection(true)->set($key, $value); } catch (\Exception $ex) { $result = false; } return $result; } /** * 加1 * @param $id * @param int $value * @return int */ public static function increase($id, $value = 1) { $key = self::getKey($id); $value = abs($value); try { $result = self::getConnection(true)->incr($key, $value); } catch (\Exception $ex) { $result = false; } return $result; } /** * @param $id , 如果值小于0则设为0 * @param int $value * @return int */ public static function decrease($id, $value = 1) { $key = self::getKey($id); $value = abs($value); try { $result = self::getConnection(true)->decr($key, $value); if ($result < 0) { $result = self::getConnection(true)->set($key, 0); } } catch (\Exception $ex) { $result = false; } return $result; } /** * 删除 * @param $id * @return bool */ public static function delete($id) { $key = self::getKey($id); try { $result = self::getConnection(true)->delete($key); } catch (\Exception $ex) { $result = false; } return $result; } /** * 获取连接池 * @param bool $isMaster * @return \Redis */ protected static function getConnection($isMaster = false) { $class = get_called_class(); $configClass = $class::CONFIG_CLASS; $redis = new \Heanup\Frame\Library\Redis($configClass); $connection = $redis->getConnection($isMaster); return $connection; } }