本文介绍了mongodb查询的最大长度是多少?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我将执行一个大查询,所以我想知道mongodb查询的最大长度是多少?
I will execute a big query so i want to know what is the maximum length of a mongodb query ?
推荐答案
创建查询时要构造的文档最大大小为16MB.您可以在此处看到其他限制:
The maximum size of a document, which is what you are constructing when you create a query is 16MB. You can see that, and other limits here:
http://docs.mongodb.org/manual/reference/limits/
这篇关于mongodb查询的最大长度是多少?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!