[PHP开发APP接口]⑦--Memcache Redis

Paste_Image.png
Paste_Image.png
Paste_Image.png
Paste_Image.png

redis服务端和客户端安装
//www.greatytc.com/p/5cf604f2979d

//www.greatytc.com/p/66d71afee9bd

 /usr/local/bin/redis-server /home/tong3/config/redis/redis.conf 
/usr/local/bin/redis-cli -h 127.0.0.1 -p 7200
Paste_Image.png

过期时间为秒

Paste_Image.png
Paste_Image.png

setCache.php

<?php
  $redis=new Redis();
  $redis->connect('127.0.0.1',7200);

  $redis->set('singwa',123);

?>

getCache.php

<?php
  $redis=new Redis();
  $redis->connect('127.0.0.1',7200);

  var_dump($redis->get('singwa'));
?>
Paste_Image.png

setCache.php

<?php
  $redis=new Redis();
  $redis->connect('127.0.0.1',7200);

  $redis->setex('singwa',15,'1515151515');

?>
Paste_Image.png
Paste_Image.png
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容