vsivsi / meteor-file-collection

Extends Meteor Collections to handle file data using MongoDB gridFS.
http://atmospherejs.com/vsivsi/file-collection
Other
159 stars 37 forks source link

Performance question #89

Open poojabansal opened 8 years ago

poojabansal commented 8 years ago

@vsivsi I am interested in storing about half million images (of varied sizes) using your package. Will there be any slowdown in performance - in terms of upload or rendering them to display?

If yes, do you have any suggestions to optimize?

Thanks!

vsivsi commented 8 years ago

Hi, The answer to your question is actually a MongoDB/gridFS question.

Short answer is that MongoDB is made to scale, and gridFS is built on top of that scalability. This package simply maps those concepts to Meteor.collections and provides an easy way to enable HTTP endpoints to gridFS files and support for resumable.js.

But the performance you experience will be entirely dependent on how you architect and administer your MongoDB backing store infrastructure.

poojabansal commented 8 years ago

Thanks for the quick response!