1 | <?php |
||
14 | class RedisDriver |
||
15 | { |
||
16 | public $hostname = 'localhost'; |
||
17 | |||
18 | public $port = 6379; |
||
19 | |||
20 | public $password; |
||
21 | /** |
||
22 | * @var |
||
23 | */ |
||
24 | protected $connection; |
||
25 | |||
26 | /** |
||
27 | * Get predis connection |
||
28 | * |
||
29 | * @return \Predis\Client |
||
30 | */ |
||
31 | public function getConnection($reset = false) |
||
46 | } |
||
47 |