Currently, decompression (i.e. gzip decompression in kdb 4.0+) happens in .req.parseresp, meaning that verbose mode shows compressed response.
Should be done in .req.send as soon as response is received.
Should also make it simple to plug in additional handlers for different Content-Encoding types, probably via a dictionary of handlers that can be extended by users.
Currently, decompression (i.e.
gzip
decompression in kdb 4.0+) happens in.req.parseresp
, meaning that verbose mode shows compressed response.Should be done in
.req.send
as soon as response is received.Should also make it simple to plug in additional handlers for different
Content-Encoding
types, probably via a dictionary of handlers that can be extended by users.