<?php /** * This is a Redis exntend class * jay.w */ class RedisClient { public static $instance = NULL; public static $linkHandle = array(); private $conf; //construct:connect redis public function __construct($config) { $this->conf = $config; } /*…