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
It turns out we had a very naiive implementation of the local storage provider. It was doing f.write(other_f.read()).
This is no good because f.read() reads everything into memory.
A fix needs to make all interaction with files properly chunked.
The text was updated successfully, but these errors were encountered:
Project board link
It turns out we had a very naiive implementation of the local storage provider. It was doing
f.write(other_f.read())
.This is no good because f.read() reads everything into memory.
A fix needs to make all interaction with files properly chunked.
The text was updated successfully, but these errors were encountered: