javascript - meteor poll on demand without subscribing -
Is there an easy way to use Meteor API to vote on demand without the upper part of real time membership? I do not want to use an API, I want to get it from DDP but excluding membership. Some data does not require that real time thanks!
From the section of the meteor docs:
The cursor is a reactive data Source for the first time when you retrieve a cursor's documents within a fetch, map, or a reactive computation (for example, a template or autoron), the meteorite will record dependency on the underlying data. Any change in the collection that changes documents in the cursor, will trigger a recycling. To disable this behavior, pass as the option to search
{responsive: incorrect}
.
Comments
Post a Comment