PHP 数据库缓存Memcache操作类
操作类就是把一些常用的一系列的数据库或相关操作写在一个类中,这样调用时我们只要调用类文件,如果要执行相关操作就直接调用类文件中的方法函数就可以实现了,下面整理了一个Memcache数据缓存操作类库文件,希望对各位会有帮助了.
PHP 数据库缓存Memcache操作类代码如下:
- class memcachedInit {
- private $memcache;
-
-
-
-
-
-
-
- public function set_cache($key, $value, $time = 0) {
- return $this->memcache->set($key, $value, false, $time);
- }
-
-
-
-
-
- public function get_cache($key) {
- return $this->memcache->get($key);
- }
-
-
-
-
-
- public function clear($key) {
- return $this->memcache->delete($key);
- }
-
-
-
-
-
- public function clear_all() {
- return $this->memcache->flush();
- }
-
-
-
-
-
- public function increment($key, $step = 1) {
- return $this->memcache->increment($key, (int) $step);
- }
-
-
-
-
-
- public function decrement($key, $step = 1) {
- return $this->memcache->decrement($key, (int) $step);
- }
-
-
-
- public function close() {
- return $this->memcache->close();
- }
-
-
-
-
-
-
-
- public function replace($key, $value, $time = 0, $flag = false) {
- return $this->memcache->replace($key, $value, false, $time);
- }
-
-
-
- public function getVersion() {
- return $this->memcache->getVersion();
- }
-
-
-
- public function getStats() {
- return $this->memcache->getStats();
- }
-
-
-
-
-
-
-
- public function add_server($servers) {
- $this->memcache = new Memcache;
- if (!is_array($servers) || emptyempty($servers)) exit('memcache server is null!');
- foreach ($servers as $val) {
- $this->memcache->addServer($val[0], $val[1]);
- }
- }
- }
使用方法:
$newclass = new memcachedInit();
$newclass->getVersion() //获取版本号
$newclass->close() //关闭Memcache链接
$newclass->clear($key) //从memcache中删除一条缓存
$newclass->get_cache($key) //通过KEY获取缓存数据
上面就简单介绍了它的使用方法了,其实还有很多在这里我就不介绍了呀.
总结:这个只是一个最基于的Memcache缓存操作类了,比起像数据库缓存类操作会更好更复杂了,希望例子能帮助到各位朋友.