in reply to Eliminating Recursive Tree Walking by using MJD-style Infinite Streams?
It doesn't matter if you are letting perl manage the call stack (recursive function) or you are managing your own queue/stack (@work) - you will run into memory problems if you have to put more items on the stack then you take off. If this is the root of your problem (and I haven't read far enough to know for sure), then you will need to take a different approach.
Cheers - L~R
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Eliminating Recursive Tree Walking by using MJD-style Infinite Streams?
by jryan (Vicar) on Jun 16, 2008 at 21:56 UTC | |
by Limbic~Region (Chancellor) on Jun 17, 2008 at 13:46 UTC | |
by ikegami (Patriarch) on Jun 17, 2008 at 14:50 UTC |