This repository was archived by the owner on Mar 8, 2024. It is now read-only.

Description
The library uses a Cache Key composed out of the Request Method and http.Request.RequestURI.
However "RequestURI" is a server only field and is empty on client side.
Thus all GET Request share the same cache key. ("GET "). As a result this library is basically is a single page cache.
See
|
key = fmt.Sprintf("%s %s", req.Method, req.RequestURI) |