Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Middleware ¶
func Middleware(level int, o ...Option) shogoa.Middleware
Middleware encodes the response using Gzip encoding and sets all the appropriate headers. If the Content-Type is not set, it will be set by calling http.DetectContentType on the data being written.
Types ¶
type Option ¶
type Option func(*options) error
Option allows to override default parameters.
func AddContentTypes ¶
AddContentTypes allows to specify specific content types to encode. Adds to previous content types.
func AddStatusCodes ¶
AddStatusCodes allows to specify specific content types to encode. All content types that has the supplied prefixes are compressed.
func IgnoreRange ¶
IgnoreRange will set make the compressor ignore Range requests. Range requests are incompatible with compressed content, so if this is set to true "Range" headers will be ignored. If set to false, compression is disabled for all requests with Range header.
func OnlyContentTypes ¶
OnlyContentTypes allows to specify specific content types to encode. Overrides previous content types. no types = ignore content types (always compress).
func OnlyStatusCodes ¶
OnlyStatusCodes allows to specify specific content types to encode. All content types that has the supplied prefixes are compressed. No codes = ignore content types (always compress).