douya7309 2017-01-24 14:36
浏览 52
已采纳

关于PHP中的缓存

I have few question where I am confused about the server side cache in PHP. I am using Yii2 to set MemCache. And my question are:-

1.How can I get expire time of cache variable with id?

\Yii::$app->cache->set('cacheId',$counter,$expireTime); //set cache with id cacheId

2.If I set same cache id/ overwrite cache id without $expireTime. It will take default expire time or from before?

\Yii::$app->cache->set('cacheId',\Yii::$app->cache->get(cacheId)+1); //overwrite cachewith id cacheId.

Code looks are in Yii2 but my question is related to server side cache mechanism in PHP.

Thanks You.

  • 写回答

1条回答 默认 最新

  • doumengyin0491 2017-01-24 15:31
    关注

    Question 1.

    Yii2 does not offer a way to retrieve expiration time, see API Documentation. MemCache specifically also does not support this if you check the PHP Reference, so if this information is crucial for your scenario, you have to store it yourself or use a cache implementation which supports it.

    Question 2.

    Yes, if you overwrite a cached item with set, a completely new expiration time will be applied, so if none is given, the default will be used.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 求差集那个函数有问题,有无佬可以解决
  • ¥15 【提问】基于Invest的水源涵养
  • ¥20 微信网友居然可以通过vx号找到我绑的手机号
  • ¥15 寻一个支付宝扫码远程授权登录的软件助手app
  • ¥15 解riccati方程组
  • ¥15 display:none;样式在嵌套结构中的已设置了display样式的元素上不起作用?
  • ¥15 使用rabbitMQ 消息队列作为url源进行多线程爬取时,总有几个url没有处理的问题。
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名
  • ¥65 汇编语言除法溢出问题