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
will leak an iterator and therefore open file descriptors. (even if the db is closed) Doing enough of these and your Ruby process crashes because it exhausts your file ulimit.
We would need an explicit iterator interface or at the very least a #close method on the iterator so that the open files can be closed.
The text was updated successfully, but these errors were encountered:
A simple statement like
will leak an iterator and therefore open file descriptors. (even if the db is closed) Doing enough of these and your Ruby process crashes because it exhausts your file ulimit.
We would need an explicit iterator interface or at the very least a #close method on the iterator so that the open files can be closed.
The text was updated successfully, but these errors were encountered: