0

如何在 Mongoid 中为我的 Mongo 查询设置超时?我知道 Mongo 支持cursor.maxTimeMS()但在 Mongoid 文档中找不到它。

4

1 回答 1

0

从 Mongoid 6 开始,您可以使用如下内容:

Model.max_time_ms(5000).all
于 2017-12-01T06:31:31.820 回答