win10系统
wamp/phpstudy
Thinkphp或php redis调用报Redis server went away完美解决(好用)
下载以下两个软件安装就行了
链接:https://pan.baidu.com/s/1qeu9Eyp7vuMNKTPdofL-jw
提取码:c7zk
Redis-x64-3.2.100.msi
链接:https://pan.baidu.com/s/1P77ycMDbmDmXhT_KGE2TZQ
提取码:1niq
redis-desktop-manager-0.8.8.384.exe
$redis = new \Redis();
$redis->connect('127.0.0.1',6379);
$redis_name = "miaosha";
$uid = $_GET['uid'];
$num = 10;
$redis->rPush($redis_name , '%'.microtime());
dump($redis->lLen($redis_name));exit;