Is there a way to have keepalive on when in O_ONE_LOOP mode?
bootrino opened this issue · 1 comments
bootrino commented
Hello,
I start onion like this:
onion *o=onion_new(O_ONE_LOOP );
But in this mode it seems to close connection after each request. I would like to keep the connection alive. Is this possible?
thanks!
Deleted user commented
Please disregard and close this issue... I figured out I could just set number of threads to 1.
onion_set_max_threads(o, 1);
That seems to work fine.
Strangely, the simple test I do of 1000 requests takes 29 seconds in O_ONE_LOOP mode and 50 seconds or more in O_THREADED mode.
Doesn't really matter why though because I really want to run in O_ONE_LOOP mode, so a good outcome.