I'm trying to use longpoll with a call to
http://lite.couchbase./_active_tasks instead of continuous. Why? Because with continuous it keeps appending to the http response buffer, which can grow indefinitely.
The question I have is how can I make a call to _active_tasks with longpoll such that each subsequent call "advances" the responses? The behavior I see now is that it just repeats itself. It doesn't "move on" to the next bits of information.
From what I understand to do this with _changes I send it the since parameter. Is there an equivalent in this context?
slim