Closed mkscrg closed 12 years ago
Thanks Michael for all your work on this. I will check it out and merge it tomorrow. Cheers.
A user found a bug in monad-control, so I'm postponing creating another release until it is fixed. See https://github.com/basvandijk/lifted-base/issues/1
No problem. Thanks for the heads up.
Looks like Bas has the fixed lifted-base
on Hackage now. Can you get these tailable cursor fixes up too?
Cheers, Mike
I just released a new version with your fix. Thanks!
See issue #10.
Database.MongoDB.Query.next
andnextBatch
prefetch a promise of the next batch of documents from the server whenever the current batch has been exhausted. The following call tonext
ornextBatch
fulfills that promise (thereby turning it into a concrete batch of documents) and then returns one or more documents in the batch.The old behavior was to raise an exception if an empty batch with a nonzero cursor ID was encountered. This is normal when using tailable cursors, so a change was required.
Now,
Nothing
is returned with the still-live cursor ID, instead of raising the exception. Also, prefetched empty batches with nonzero cursor IDs are refetched once per call to avoid stale data.This new prefetching behavior does not affect the performance of
next
, except when calling it repeatedly on a tailable cursor with no new data. In those (generally avoidable) cases, each call tonext
results in two server calls instead of one.