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
Scenario: trying to get ride of some initial lines from an SQL dump file to be able to properly import it on my local Postgres database. File size is around 80GB.
An application that tries to emulate or be an easier sed should work with files of any size, by chunks. Not try to load the whole thing in memory. Otherwise I'd just use my favourite editor.
The text was updated successfully, but these errors were encountered:
But the behavior of the application depends on the regex library and it looks like they do not want to deal with stream cases (see rust-lang/regex#425) - and that is what we need. Does anyone have a good idea? Maybe we can create ourself regex library that can help us deal with the edge cases but it ought to be much much hard than we think.
See src/replacer/Replacer/replace for more detail.
Scenario: trying to get ride of some initial lines from an SQL dump file to be able to properly import it on my local Postgres database. File size is around 80GB.
An application that tries to emulate or be an easier
sed
should work with files of any size, by chunks. Not try to load the whole thing in memory. Otherwise I'd just use my favourite editor.The text was updated successfully, but these errors were encountered: