From a53b27c62e792e09380876db916289c77f2ae2e0 Mon Sep 17 00:00:00 2001 From: Matthew Holt Date: Wed, 9 Oct 2019 19:22:46 -0600 Subject: http: Add work-in-progress cache handler module This migrates a feature that was previously reserved for enterprise users, according to https://github.com/caddyserver/caddy/issues/2786. The cache HTTP handler will be a high-performing, distributed cache layer for HTTP requests. Right now, the implementation is a very basic proof-of-concept, and further development is required. --- cmd/caddy/main.go | 1 + 1 file changed, 1 insertion(+) (limited to 'cmd/caddy') diff --git a/cmd/caddy/main.go b/cmd/caddy/main.go index 93e95e7..87226cd 100644 --- a/cmd/caddy/main.go +++ b/cmd/caddy/main.go @@ -28,6 +28,7 @@ import ( _ "github.com/caddyserver/caddy/v2/modules/caddyhttp/encode/zstd" _ "github.com/caddyserver/caddy/v2/modules/caddyhttp/fileserver" _ "github.com/caddyserver/caddy/v2/modules/caddyhttp/headers" + _ "github.com/caddyserver/caddy/v2/modules/caddyhttp/httpcache" _ "github.com/caddyserver/caddy/v2/modules/caddyhttp/markdown" _ "github.com/caddyserver/caddy/v2/modules/caddyhttp/requestbody" _ "github.com/caddyserver/caddy/v2/modules/caddyhttp/reverseproxy" -- cgit v1.2.3