1 | <?php |
||
14 | class Redis implements StorageInterface { |
||
15 | |||
16 | protected $redis; |
||
17 | |||
18 | public function __construct($host, $password = null, $port = 6379, $prefix = 'PHPProm:', $dbIndex = null) { |
||
29 | |||
30 | public function storeMeasurement($prefix, $key, $value) { |
||
33 | |||
34 | public function incrementMeasurement($prefix, $key) { |
||
37 | |||
38 | public function getMeasurements($prefix, array $keys, $defaultValue = 'Nan') { |
||
48 | } |
||
49 |