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
Right now we wrap write ops, but not find() or findOne(). We should also store the results of find() and findOne(), so restarts don't need to execute those queries.
Couple of caveats:
find().cursor() is tricky
As a general case of (1), find() can return a lot of documents. We shouldn't expect that the result of find() can be stored in a single Operation document
The text was updated successfully, but these errors were encountered:
Right now we wrap write ops, but not
find()
orfindOne()
. We should also store the results offind()
andfindOne()
, so restarts don't need to execute those queries.Couple of caveats:
find().cursor()
is trickyfind()
can return a lot of documents. We shouldn't expect that the result offind()
can be stored in a singleOperation
documentThe text was updated successfully, but these errors were encountered: