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
We have a CLI task for keeping a redis cache populated from RethinkDB. It has a --watch argument which, when true, appends .changes({ includeInitial: true })('new_val') to each query used to rebuild the cache.
The code and queries being executed are otherwise identical, but running with --watch results in ~3x the memory consumption.
./bin/cache 130MB
./bin/cache --watch 330MB
I think this may be related to #263... perhaps the fix mentioned there (c323d49) was not ported over to the stream handling code?
The text was updated successfully, but these errors were encountered:
We have a CLI task for keeping a redis cache populated from RethinkDB. It has a
--watch
argument which, whentrue
, appends.changes({ includeInitial: true })('new_val')
to each query used to rebuild the cache.The code and queries being executed are otherwise identical, but running with
--watch
results in ~3x the memory consumption.I think this may be related to #263... perhaps the fix mentioned there (c323d49) was not ported over to the stream handling code?
The text was updated successfully, but these errors were encountered: