Add parallel compilation of programs sent by the client #10
Labels
enhancement
New feature or request
for beta version
This issue or pull request that needs to be made for the beta version
Current behavior:
If first client sends code
A
, which runs~5000ms
, and the second client sends codeB
, which runs~100ms
, then a queue is formed and the second client will receive it's output only after executing codeA
, that is after~5100ms
.Expected behavior:
If first client sends code
A
, which runs~5000ms
, and the second client sends codeB
, which runs~100ms
, then the requests should be parallelized and the first client should receive a response in~5000ms
, and the second in~100ms
.The text was updated successfully, but these errors were encountered: