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
I have a question (but do not know if the issues are the appropriate place for this). if not passed a block but "lazy" is called, will the objects still accumulate in memory? for example, will objects still accmulate in memory when invoked like this?
File.open(path, 'r') do |f|
Json::Streamer.parser(file_io: f).get(nesting_level: 1).lazy
end
if this does not have the desired effect, will wrapping things in Enumerator::Lazy.new help?
The text was updated successfully, but these errors were encountered:
I have a question (but do not know if the issues are the appropriate place for this). if not passed a block but "lazy" is called, will the objects still accumulate in memory? for example, will objects still accmulate in memory when invoked like this?
if this does not have the desired effect, will wrapping things in
Enumerator::Lazy.new
help?The text was updated successfully, but these errors were encountered: