Nested doseqs leak with sequence of huge lazy-seqs
Description
Hello!
This little snippet demonstrates the problem:
That's it. It is not just eats my processor, but also eats all available memory. Practically it can affect (and it is) at consuming of complex lazy structures like huge XML-documents.
I think this is at least non trivial behaviour.
It can be fixed by this small patch. We can get next element before current iteration, not after, so outer loop will not hold reference to the head of inner-seq.
This patch doesn't solve all problems, for example this code:
leaks. Because chunked-seqs (vector in this case) holds current element by design.
Environment
None
Attachments
1
Activity
Show:
Andy Fingerhut May 25, 2015 at 9:15 PM
Andrew, sorry but I do not know whether this ticket is of interest to the Clojure core team.
I do know that patches are only considered for inclusion in Clojure if the submitter has signed the contributor agreement (CA). If you were interested in doing that, you can do it fairly quickly on-line here: http://clojure.org/contributing
Hello!
This little snippet demonstrates the problem:
That's it. It is not just eats my processor, but also eats all available memory. Practically it can affect (and it is) at consuming of complex lazy structures like huge XML-documents.
I think this is at least non trivial behaviour.
It can be fixed by this small patch. We can get next element before current iteration, not after, so outer loop will not hold reference to the head of inner-seq.
This patch doesn't solve all problems, for example this code:
leaks. Because chunked-seqs (vector in this case) holds current element by design.