12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- namespace Mall\Framework\Cache;
- interface StorageInterface
- {
-
- public function get($key);
-
- public function set($key, $value = null, $ttl = null);
-
- public function has($key);
-
- public function delete($key);
-
- public function push($key, $value, $type = 'end');
-
- public function pop($key, $type = 'start');
- }
|