I am building a Rust server with actix-web.
Recently, I applied Recursive Dijkstra’s algorithm to a server to solve some problem, but the system crashed due to excessive stack memory.
Is there a way to allocate more stack memory at startup?
I know that is chatting, but i need to expand at least 100 depth at Recursive Dijkstra’s algorithm.
that is my sudo code
when api called then i use actix_rt for async
actix_rt::spawn(async move {...Recursive Dijkstra's algorithm..});
New contributor
이경서 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.