[Ur] server side threads?
Gergely Buday
gbuday at gmail.com
Thu Sep 1 10:17:21 EDT 2011
Hi,
in the demo, there is threads.ur which contains
fun main () =
buf <- Buffer.create;
let
fun loop prefix delay =
let
fun loop' n =
Buffer.write buf (prefix ^ ": Message #" ^ show n);
sleep delay;
loop' (n + 1)
in
loop'
end
in
return <xml><body onload={spawn (loop "A" 5000 0); spawn (loop
"B" 3000 100)}>
<dyn signal={Buffer.render buf}/>
</body></xml>
end
The spawned processes run in the browser, according to the description.
Is it possible to run threads in the server? How?
- Gergely
More information about the Ur
mailing list