Skip to content
Snippets Groups Projects
Commit eb44670c authored by Loïc Correnson's avatar Loïc Correnson Committed by David Bühler
Browse files

[ivette] reducing polling & response latency

parent 81b7ef80
No related branches found
No related tags found
No related merge requests found
......@@ -121,7 +121,7 @@ const pending = new Map<string, PendingRequest>();
let process: ChildProcess | undefined;
/** Polling timeout when server is busy. */
const pollingTimeout = 200;
const pollingTimeout = 10;
let pollingTimer: NodeJS.Timeout | undefined;
/** Killing timeout and timer for server process hard kill. */
......
......@@ -67,19 +67,23 @@ let feed_bytes { sock ; rcv ; brcv } =
let send_bytes { sock ; snd ; bsnd } =
try
(* snd buffer is only used locally *)
let n = Buffer.length bsnd in
if n > 0 then
let s = Bytes.length snd in
let w = min n s in
Buffer.blit bsnd 0 snd 0 w ;
let r = Unix.single_write sock snd 0 w in
if r > 0 then
(* TODO[LC]: inefficient move. Requires a ring-buffer. *)
let rest = Buffer.sub bsnd r (n-r) in
Buffer.reset bsnd ;
Buffer.add_string bsnd rest
with Unix.Unix_error((EAGAIN|EWOULDBLOCK),_,_) -> ()
while true do
(* snd buffer is only used locally *)
let n = Buffer.length bsnd in
if n > 0 then
let s = Bytes.length snd in
let w = min n s in
Buffer.blit bsnd 0 snd 0 w ;
let r = Unix.single_write sock snd 0 w in
if r > 0 then
(* TODO[LC]: inefficient move. Requires a ring-buffer. *)
let rest = Buffer.sub bsnd r (n-r) in
Buffer.reset bsnd ;
Buffer.add_string bsnd rest
else raise Exit
else raise Exit
done
with Exit | Unix.Unix_error((EAGAIN|EWOULDBLOCK),_,_) -> ()
(* -------------------------------------------------------------------------- *)
(* --- Data Chunks Encoding --- *)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment