Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果有人知道我的“查询”的一些例子会很好。
如果有一个带有价格和时间戳的集合,我必须“仅”查询具有最新时间戳的记录。
我可以查询按时间戳排序的所有记录,并使用结果中的最新时间戳进行第二次查询,但我想这不是最好的方法(500.000 条记录)。有人知道用 mongoDB 和 PHP5 做这件事的好方法吗?
如果您使用的是标准的、自动生成的默认“_id”主字段,即基于时间戳。limit(1)按降序获取单个 ( ) 将是最近的文档。
limit(1)
除此之外,取决于您使用的架构。