http://qs321.pair.com?node_id=11128200


in reply to AnyEvent - sequence of async operations without recursion?

no warnings 'recursion';

The above will turn "deep recursion" warnings off (and can be localised). After that Perl will happily recurse to exhaustion. I think the limit before complaining (and not bailing out) is 100. Obviously with your queue of 10 this limit is not reached.

Since you said that your jobs are not really asynchronous why not run them in a sequence?

Edit: removed use from the 1st line, thanks AnomalousMonk