meteor-reactive-publish
meteor-reactive-publish copied to clipboard
Reactive publish endpoints
Performed `meteor add peerlibrary:reactive-publish` then ran application and server side throws the following error: `W20220203-16:56:21.528(-7)? (STDERR) Debugger attached. W20220203-16:56:25.604(-7)? (STDERR) Waiting for the debugger to disconnect... W20220203-16:56:25.619(-7)? (STDERR) /Users/butlea1/.meteor/packages/meteor-tool/.2.5.3.1ssl86p.p3e7++os.osx.x86_64+web.browser+web.browser.legacy+web.cordova/mt-os.osx.x86_64/dev_bundle/server-lib/node_modules/fibers/future.js:280 W20220203-16:56:25.619(-7)?...
Hello, Before using meteor-reactive-publish, my publish function code looked like: ``` let handle = cursor.observe({ added: doc => { this.added('placeholders', doc._id, transform(doc)) }, changed: (newDoc, oldDoc) => { this.changed('placeholders', oldDoc._id,...
Hi, when I use nested autoruns to avoid rerunning everything on every change but with this, on the server, the ready message arrives in the client before both autorun blocks...
We are using this package in production and we are experiencing huge memory leaks. When I continuously update the items that are subscribed in this publication then the memory is...
This lib is a life-saver, thanks @mitar We are now facing production issues with low observer re-use. Upon re-running the autorun in the publish function, is the previous observer removed...
Nested computations should get stopped automatically when outside computation is stopped? Or we should use `onInvalidate` to make sure it is stopped. Otherwise `handles` is just growing and growing.
Meteor 3
Seems like no one is working on getting this package fibre free? I can give it a shot. If anyone else already started, lets coordinate.