当前位置:Gxlcms > PHP教程 > Redis创建实例

Redis创建实例

时间:2021-07-01 10:21:17 帮助过:7人阅读

Redis创建实例




  1. 'REDIS_HOST' => '',
  2. 'REDIS_PORT' => 6379,
  3. //缓存
  4. 'DATA_CACHE_TYPE' => 'Redis', // 数据缓存类型,
  5. 'DATA_CACHE_TIME' => 36000,
  6. 'REDIS_IP' =>array (
  7. 'host' => '',
  8. 'port' => 6379,
  9. 'timeout' => false,
  10. 'persistent' => false,
  11. ),
  12. 'CACHETABLE'=> array(
  13. 'get_access_token' => array('cacheKey'=>"get_access_token",'expire'=>6000),
  14. ),
  15. /*
  16. * 是否允许分享
  17. */
  18. public function allowshare($openid){
  19. $Cache = Cache::getInstance('Redis');
  20. $key = "get_share_count_".$openid ;
  21. $times = $Cache->get($key);
  22. if (empty($times)){
  23. $Cache->set($key,1);
  24. return true;
  25. }elseif ( $times>4) {
  26. return false;
  27. }else{
  28. $Cache->set($key, $times+1);
  29. return true;
  30. }
  31. }

人气教程排行