mw_etag {presser}R Documentation

Middleware that add an Etag header to the response

Description

Middleware that add an Etag header to the response

Usage

mw_etag(algorithm = "crc32")

Arguments

algorithm

Checksum algorithm to use. Only "crc32" is implemented currently.

Value

Handler function.

See Also

Other middleware: mw_json(), mw_log(), mw_multipart(), mw_raw(), mw_static(), mw_text(), mw_urlencoded()

Examples

app <- new_app()
app$use(mw_etag())
app

[Package presser version 1.1.0 Index]