You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Polling (without feed query): Send a request, get a response. Easy.
Long Polling (feed=longpoll): Send a request, get a response when a change happens. Primarily for browsers, IMO this isn't needed, or at least not very high priority.
Continuous (feed=continuous): Send a request, keep the connection open and continuously get changes. I want this.
The text was updated successfully, but these errors were encountered:
http://docs.couchdb.org/en/stable/api/database/changes.html
There are multiple ways to receive changes:
feed
query): Send a request, get a response. Easy.feed=longpoll
): Send a request, get a response when a change happens. Primarily for browsers, IMO this isn't needed, or at least not very high priority.feed=continuous
): Send a request, keep the connection open and continuously get changes. I want this.The text was updated successfully, but these errors were encountered: