AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
## persist ##### *Description* Remove the expiration timer from a key. 删除一个KEY的生命周期设置。 ##### *Parameters* *Key*: key ##### *Return value* *BOOL*: `<span class="calibre12">TRUE</span>` if a timeout was removed, `<span class="calibre12">FALSE</span>` if the key didn’t exist or didn’t have an expiration timer. 如果确实有生命周期并且成功移除,则返回TRUE。如果KEY不存在,或者KEY没有生命周期则返回FLASE。 ##### *Example* ``` <pre class="calibre9">$redis->persist('key'); ```