WordPress 瞬态
我正在尝试学习一些新的数据库技术,目前,我有机会应用和尝试新的东西。
Wordpress 创造了它的一些值:“瞬态”并将其锁定到一个关键值。
示例值:
a:20:{i:-1273996637;i:1284;i:-1273997086;}
我想知道的是如何创建这些值的概念。
I am trying to learn some new database techniques and at the moment, I have a opportunity to apply and try something new.
Wordpress coined some of it's values: "transient" and lock it on to a key value.
Example Value:
a:20:{i:-1273996637;i:1284;i:-1273997086;}
What I like to know is the concept on how these values are created.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
WordPress 中的术语“瞬态”是缓存的临时数据。数据有一个过期时间戳,因此在指定的时间间隔后会自动删除。
所以回答你的问题:某些插件(或 WP 本身)出于某种目的存储了这些数据,但它会在某个时候被自动清除。
您可以在此处阅读完整详细信息:Transients API
The term "Transient" in WordPress is cached, temporary data. The data has an expiry timestamp, so it will be automatically deleted after a specified interval.
So to answer your question: Some plugin (or WP itself) stored this data for some purpose, but it will be automatically purged at some point.
You can read the full details here: Transients API