forked from hereisamin/fullstack_code_challenges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CacheManager.php
141 lines (102 loc) · 2.72 KB
/
CacheManager.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<?php
abstract class cache{
abstract function set(string $key, string $value, $is_compressed=null, string $ttl=null);
abstract function get(string $key);
abstract function lpush(string $key, string $value);
abstract function connect(string $host, string $port);
}
Class redis extends cache{
private $cache;
public function __construct()
{
$this->cache = new \Redis();
//Do your magic here
}
function set(string $key, string $value, $is_compressed=null, string $ttl=null)
{
// TODO: Implement set() method.
$this->cache->set($key,$value);
}
function get(string $key)
{
// TODO: Implement get() method.
return $this->cache->get($key);
}
function lpush(string $key, string $value)
{
// TODO: Implement lpush() method.
$this->cache->lPush($key,$value);
}
function connect(string $host, string $port)
{
// TODO: Implement connect() method.
$this->cache->connect($host,$port);
}
}
Class memcache extends cache{
private $cache;
public function __construct()
{
$this->cache = new \Memcache();
//Do your magic here
}
function set(string $key, string $value, $is_compressed=null, string $ttl=null)
{
$this->cache->set($key,$value,$is_compressed,$ttl);
}
function get(string $key)
{
// TODO: Implement get() method.
return $this->cache->get($key);
}
function lpush(string $key, string $value)
{
// TODO: Implement lpush() method.
throw new \Exception("method not supported");
}
function connect(string $host, string $port)
{
// TODO: Implement connect() method.
$this->cache->connect($host,$port);
}
}
Class cacheManager {
private $cache;
public function __construct(cache $cache)
{
$this->cache = $cache;
}
public function connect (string $host, string $port) {
$this->cache->connect($host,$port);
}
public function set(string $key, string $value, $is_compressed, string $ttl){
$this->cache->set($key, $value, $is_compressed, $ttl);
}
public function get(string $key){
return$this->cache->get($key);
}
public function lpush(string $key, string $value)
{
// TODO: Implement lpush() method.
$this->cache->lPush($key,$value);
}
}
$cache = new redis();
try {
$cm = new CacheManager($cache);
$cm->connect('somehost','121');
$cm->set('one','1', null, null );
$cm->lpush('two','1');
$cm->lpush('two','2');
echo $cm->get('one');
} catch (Exception $e) {
}
$cache = new memcache();
try {
$cm = new CacheManager($cache);
$cm->connect('somehost','121');
$cm->set('one','1', '', '');
$cm->lpush('two','2'); // generates exception
echo $cm->get('one');
} catch (Exception $e) {
}