I have a controller action that does heavy computation and takes 10 minutes or more to complete.
def timeConsumingOperation(){
}
when i request the url /application/timeConsumingOperation after sometime of waiting the browser shows timeout or service unavailable.
My question is does this timeout also stop the backend method from running or even though the connection to the server is detached, the method will run till completion in the backend? Thanks for the answer!