Acknowledged
CIQQA-3310

Proposal: Allow Larger Stack for Recursive Data Handling

I'm developing an app that processes large and deeply nested JSON data structures, where the structure is beyond my control. When handling recursive data, it's easy to hit stack overflow errors. To work around this, I had to rewrite recursive logic to use iterative processing, which unfortunately adds overhead and complexity.

Since the Watchdog already ensures that code execution doesn't run too long uninterrupted, would it be feasible to increase the stack size? I'm not sure of all the implications, but it might provide more flexibility for safely handling deeply nested structures.

Parents Comment Children
No Data