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.
我知道我可以按排序顺序查找文档,但我可以按排序顺序插入它们吗?数据库中的set数据按照 Redis 中的数据类型排序。
set
通常,大多数(全部?)数据库中的记录/文档的顺序是未定义的。如果您希望它们以特定顺序返回 - 在查询时指定顺序。MongoDB 也不例外。
您无法影响新文档的物理位置,但您可以按插入顺序查询(请参阅$natural)。