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.
我需要python和php支持。我目前正在使用mongodb它,它对我的数据(测试结果)非常有用,但我需要存储超过 32 MB 且超过 16 MB 的 mongo 限制的不同类型测试的结果。
python
php
mongodb
目前每个测试都是一个大的 python 字典,我检索并用php.
每个 MongoDB BSON 文档最多可以存储 16MB 的数据(例如,使用 pymongo Binary 数据类型)。对于任意大数据,您想使用 GridFS,它基本上将您的数据存储为块 + 额外的元数据。当您使用具有复制功能(副本集)的 MongoDB 时,您将拥有一种分布式二进制存储(不要将其与分布式文件系统混为一谈(不与本地文件系统集成)。