We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently we store the publication data in our ObservableCollections but Meteor also stores it in it's Mergebox.
It's not really an issue, as-in, how big can your data get? 2MB, 5MB ? If it passes 50MB I think you should reconsider your approach.
In any case this data will not affect your RAM too much. But it's not elegant.
Use this.disableMergebox() from Mitar, and try to implement a custom data store.
this.disableMergebox()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem
Currently we store the publication data in our ObservableCollections but Meteor also stores it in it's Mergebox.
It's not really an issue, as-in, how big can your data get? 2MB, 5MB ? If it passes 50MB I think you should reconsider your approach.
In any case this data will not affect your RAM too much. But it's not elegant.
Solution
Use
this.disableMergebox()
from Mitar, and try to implement a custom data store.The text was updated successfully, but these errors were encountered: