GridFS (MongoDB) and Python
blog.pythonisito.com
GridFS (MongoDB) and Python
1–3 of 3 posts
Re: GridFS (MongoDB) and Python
#2So, do I need GridFS if I just want to attach few pictures to a user collection or can I just embed then in a user document assumed they stay under 4mb?
Re: GridFS (MongoDB) and Python
#3So, do I need GridFS if I just want to attach few pictures to a user collection or can I just embed then in a user document assumed they stay under 4mb?
If they are always under 16MB, you'll be fine, though if you could stream them out of GridFS using a chunked encoding or something like that, you might save a bit of RAM.