Compress Middleware and Tstream

Compress middleware will only compress the response if some conditions are met:

  1. Client sends an accept-encoding header with value gzip or deflate
  2. Response size is bigger than the threshold specified in the middleware (1024 bytes by default)
  3. Response content-type is "compressible" (most text types, like text/html, text/plain, application/json, etc.