|
@@ -3,7 +3,7 @@
|
|
|
namespace app\index\controller;
|
|
|
|
|
|
use think\Controller;
|
|
|
-
|
|
|
+use Redis;
|
|
|
use \GatewayWorker\Lib\Gateway;
|
|
|
class Test extends Controller
|
|
|
{
|
|
@@ -36,10 +36,10 @@ class Test extends Controller
|
|
|
$redis->select($redisconfig['redis_selectdb']);
|
|
|
}
|
|
|
|
|
|
+ $key = 'party_giveGiftToYou_180';
|
|
|
|
|
|
- $party_id = 141;
|
|
|
- $res = $redis->hGetAll("online_".$party_id);
|
|
|
- dump($res);
|
|
|
+ $redis->incr($key);
|
|
|
+ $redis->pExpire($key, 100000);
|
|
|
}
|
|
|
|
|
|
|