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
This repo looks pretty dead to me but I figured I'd drop a comment and offer to help in the event that someone is still listening.
It looks like slither is reading the whole files into memory, which does not scale. I'm proposing replacing storing all the data in a hash here with a yield so that the lines are parsed on demand. There may need to be a little fiddling with the sections to make this work correctly, but it seems pretty doable to me.
Let me know what you think.
-Ben
The text was updated successfully, but these errors were encountered:
Hey,
This repo looks pretty dead to me but I figured I'd drop a comment and offer to help in the event that someone is still listening.
It looks like slither is reading the whole files into memory, which does not scale. I'm proposing replacing storing all the data in a hash here with a
yield
so that the lines are parsed on demand. There may need to be a little fiddling with the sections to make this work correctly, but it seems pretty doable to me.Let me know what you think.
-Ben
The text was updated successfully, but these errors were encountered: