多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
## setTimeout, expire, pexpire ##### *Description* Sets an expiration date (a timeout) on an item. pexpire requires a TTL in milliseconds. 给KEY设置一个生存周期,pexpire使用毫秒作为计算单位 ##### *Parameters* *Key*: key. The key that will disappear. Key:将被销毁的KEY *Integer*: ttl. The key's remaining Time To Live, in seconds. integer:生命周期 ##### *Return value* *BOOL*: `<span class="calibre12">TRUE</span>` in case of success, `<span class="calibre12">FALSE</span>` in case of failure. ##### *Example* ``` <pre class="calibre9">$redis->set('x', '42'); $redis->setTimeout('x', 3); // x will disappear in 3 seconds. sleep(5); // wait 5 seconds $redis->get('x'); // will return `FALSE`, as 'x' has expired. ``` ##