Meteor-Community-Packages/Meteor-CollectionFS

Looking for maintainers - please reach out!

raix opened this issue · 12 comments

raix commented

The best packages are the ones maintained by those using it

We are using the Meteor-CollectionFS, Thanks. I can maintain it.

raix commented

Sounds great to have you on board @ljshj I'll add you to the repo - what is your Meteor login name (I'll add publish access)

My Meteor login name is ljshj too.

raix commented

@ljshj I've added you to the organisation and meteor group - this should enable you to create new releases etc. let me know if it doesn't work - thanks!

raix commented

@harryadel is also added as maintainer @ljshj - if you have questions along the way ping me or other contributors :)

Hi @ljshj, Looking forward to doing great work with you! A review is needed here.

@harryadel Thanks. I will review it.

When the number of the file records is over 10,000 , the cpu usage will be very high, I want to modify its watch mode. @raix

raix commented

@ljshj thats an issue with Meteor.Collection subscription right?

@raix I think so too. For example, https://github.com/CollectionFS/Meteor-CollectionFS/blob/bfd5852b257ae8b35c749f34ddb12c3b0cf73a19/packages/collection/common.js#L140, When the number of the file records is over 10,000 , the observe's performance is bad.

raix commented

@ljshj ideally we would tap into the oplog query listener - I think @mitar amongst others ran into this issue.

mitar commented

@ljshj You mean the observe initialization performance is bad? BTW, do you need whole observe there or would it observeChanges be enough? For removing you probably just need _id, no? observeChanges provide you with that.