Actions
Bug #5978
closedYAML.load_stream should process documents as they are read
Description
Psych say YAML.load_documents is deprecated and say to use YAML.load_stream
instead.
Looking at the implementation for load_stream()
, looks to me as if it waits for all documents in the stream to load before anything can be done with it.
# File 'lib/psych.rb', line 221
def self.load_stream yaml
parse_stream(yaml).children.map { |child| child.to_ruby }
end
I don't think this should be the case. Ideally load_stream()
would take a block, and if an IO object is given, read a document, yield it and then read the next document, and so on.
I imagine an Enumerator might be applicable to this as well.
Files
Actions
Like0
Like0Like0Like0Like0Like0Like0