问题标签 [ttl]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
ip - Ping 和 TTL 过期的数据包:没有显示往返时间
如果我ping
使用在给定跃点过期的数据包运行,ping
则不会计算任何往返时间:
有什么办法可以显示吗?
php - Setting TTL for collection using Doctrine MongoDB ODM
Since MongoDB 2.2 it is possible to "Expire Data from Collections Using a TTL" which is implemented as a special index type.
The latest version of Doctrine ORM supports this Index Option. Unfortunately I have not been able to find how to correctly set this index using doctrine annotations/config files.
This is how I'm attempting to do it, I hope some one can help me setting it correctly:
Then when I execute php app/console doctrine:mongodb:schema:update
(in symfony 2.3.x)
The index is generated, but the index generated doesn't look correct.
this is what I get when I execute db.system.indexes.find();
in my database:
which is not the same as if I create the index manually:
as it generates the following index:
How would I setup TTL on a date field using doctrine annotations/config files?
memcached - 在 Zend Framework 2 中使用 Memcached 设置 ttl 和命名空间
据我所知,这似乎是设置 Memcached 并设置 TTL 和命名空间的方法,但它们在缓存中没有效果。密钥没有以命名空间为前缀,并且过期时间是无限的。
有没有人有任何提示,线索?任何帮助将非常感激。
header - RabbitMQ 分离 Rejected 和 Expired 死信消息
有没有办法传递已死信的消息,因为它们被拒绝到与已过期消息不同的队列中?
我可以想象构建一个读取“全死”队列的服务,解析标题 xdeath 原因并按原因分离消息,将它们发布到不同的队列中。
但是 RabbitMQ 中也有办法做类似的事情吗?
(用例:我想通过超快服务处理过期消息以快速减少积压(例如在我们发生数据库故障后)。但是被拒绝的消息需要由启用大量调试日志记录的服务处理.)
mongodb - mongodb TTL不删除文档
我有一个简单的架构,例如:
然后我像这样设置TTL索引:
我希望记录在 1 小时后被删除,但它永远不会被删除。我打开了详细日志记录,我看到 TTLMonitor 正在运行:
当我自己运行该查询时,我看到所有过期的记录都回来了:
有任何想法吗?我难住了。
编辑 - 下面的示例文档
c - 提取 DNS A 记录的 TTL 值
我正在做一些 dns 的事情,我需要对 SRV 进行 A 记录查找并从中提取 ttl 和 ip 地址:
我可以使用以下代码提取 ip,但是如何提取 TTL?
输出:
local-storage - 使用 TTL 删除基于 LocalStorage 的时间戳
在这里真的需要你的帮助。我想为 localStorage 中的内容设置一个计时器。
例如我有一个动态更新的 DIV
并设法使用以下代码将其作为 html 块添加到 localStorage:
有一个例子,但由于某种原因它似乎不起作用:http: //jsfiddle.net/Rn4NC/4/
performance - MongoDb TTL 索引监视器是否阻塞?
基于 TTL 索引自动删除文档是阻塞操作吗?mongo 文档似乎没有说一种或另一种方式(或者我无法从中收集信息)。
指向文档中正确位置的指针将不胜感激。
cassandra - Cassandra - Cqlengine - TTL 支持
我需要通过 cqlengine 使用 TTL;但是没有关于它的文档。有人可以帮我解决这个问题。谢谢
cassandra - CQL3:当只有一个主键时如何获取 TTL?
我有一个这样定义的 CQL 表:
假设我插入这样的值:
我将如何检索插入数据的 TTL?通常,如果有一个 CQL 列不是主键的一部分,那么我可以使用如下语句:
但是由于只有主键列,因此功能喜欢ttl
并且writetime
不起作用。除了向不属于主键的表中添加额外的“虚拟”列之外,我如何获得 TTL?