私は mongoDB/nodejs ベースの CMS を作成しており、GridFS を使用してアップロードされたすべてのドキュメントを保存しています。私が持っている質問はこれです:
Does MongoDB replication sets allow increased amount of DB Storage, or simply duplicates of the database. For Instance, if I have 5 servers with 1TB of storage each, if I replica mongo across all of them, would my GridFS system have theoretically 5TB of storage (minus caching and padding) or 1TB of storage duplicated several times for better read performance?
Thanks!