Is there a way in KDB/Q to delegate user request to a separate thread? In my server, I have an internal calculation loop that runs at frequent intervals and takes time to finish. While it is running, all user queries are blocked.
How do I delegate calculation to an entirely separate thread? The only way to achieve multithreading I see is using peach/.Q.fc but that doesn't help in this case as I want to process user requests and internal loop in parallel.