MongoDB RSS Feed Entries, Embed the Entries in the Feed Object?
Posted
by Patrick Klingemann
on Stack Overflow
See other posts from Stack Overflow
or by Patrick Klingemann
Published on 2010-04-13T03:17:42Z
Indexed on
2010/04/13
3:23 UTC
Read the original article
Hit count: 311
I am saving a reference to an RSS Feed in MongoDB, each Feed has an ever growing list of Entries. As I'm designing my schema, I'm concerned about this statement from the MongoDB Schema Design - Embed vs. Reference Documentation:
If the amount of data to embed is huge (many megabytes), you may read the limit on size of a single object.
This will surely happen if I understand the statement correctly. So the question is, I am correct to assume that I should not embed the Feed Entries within a Feed because I'll eventually reach the limit on size of a single object?
© Stack Overflow or respective owner