class type http_reactor_config = object .. end
Inherits
method config_reactor_synch : [ `Close | `Connection | `Flush | `Write ]
Specifies when to synchronize output, i.e. force that all channel data are
 actually transmitted to the client:
- `Connectionmeans only at the end of the connection. This means that the
   channels of all pending requests may be buffered - needs a huge amount of
   memory
- `Closemeans only when closing the output channel (after every response). 
   This means that the whole response may be buffered - needs a lot of memory.
- `Flushmeans only when the- flushmethod is called. This is a good idea
   when one can control that.
- `Writemeans every time the internal output buffer overflows. This is the
   recommended setting in general.