mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-02-01 01:41:21 -05:00
Bumps [github.com/open-policy-agent/opa](https://github.com/open-policy-agent/opa) from 1.6.0 to 1.8.0. - [Release notes](https://github.com/open-policy-agent/opa/releases) - [Changelog](https://github.com/open-policy-agent/opa/blob/main/CHANGELOG.md) - [Commits](https://github.com/open-policy-agent/opa/compare/v1.6.0...v1.8.0) --- updated-dependencies: - dependency-name: github.com/open-policy-agent/opa dependency-version: 1.8.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
36 lines
902 B
Markdown
36 lines
902 B
Markdown
httpcc
|
|
======
|
|
|
|
Parses HTTP/1.1 Cache-Control header, and returns a struct that is convenient
|
|
for the end-user to do what they will with.
|
|
|
|
# Parsing the HTTP Request
|
|
|
|
```go
|
|
dir, err := httpcc.ParseRequest(req.Header.Get(`Cache-Control`))
|
|
// dir.MaxAge() uint64, bool
|
|
// dir.MaxStale() uint64, bool
|
|
// dir.MinFresh() uint64, bool
|
|
// dir.NoCache() bool
|
|
// dir.NoStore() bool
|
|
// dir.NoTransform() bool
|
|
// dir.OnlyIfCached() bool
|
|
// dir.Extensions() map[string]string
|
|
```
|
|
|
|
# Parsing the HTTP Response
|
|
|
|
```go
|
|
directives, err := httpcc.ParseResponse(res.Header.Get(`Cache-Control`))
|
|
// dir.MaxAge() uint64, bool
|
|
// dir.MustRevalidate() bool
|
|
// dir.NoCache() []string
|
|
// dir.NoStore() bool
|
|
// dir.NoTransform() bool
|
|
// dir.Public() bool
|
|
// dir.Private() bool
|
|
// dir.SMaxAge() uint64, bool
|
|
// dir.Extensions() map[string]string
|
|
```
|
|
|