|
|
|
|
|
by sinancepel
2959 days ago
|
|
You can have multi-threaded OCaml (our server actually has two threads), but only one can run at a time currently. We solve this problem by having a multi-process architecture where workers only communicate through a lock-free hash table in shared memory. |
|