mirror of https://github.com/knative/client.git
bumping knative.dev/eventing 13c0ce8...cbf1b08:
> cbf1b08 Switch to at least 1 event in new trigger filters e2e featurset (# 6193)
> 354a69f Set TerminationGracePeriodSecond for wathola-sender to 300 seconds (# 6192)
> 3939dc6 💄 Adding missing k8s labels to the post install manifests (# 6184)
> 74cebc5 Rename new trigger filters sql field to cesql (# 6148)
> 792f56d Update dependencies (# 6173)
> 2a69eec Clearing out old state info for new placements (# 6172)
> 7a48f42 Update actions (# 6150)
bumping knative.dev/pkg 3c00bb0...708dc1c:
> 708dc1c Update community files (# 2443)
> 062ca30 upgrade to latest dependencies (# 2433)
> 4fcbc1b Update actions (# 2434)
> 80c511a Wait for reconciler/controllers to return prior to exiting the process (# 2437)
> d481724 Update community files (# 2428)
> 9ea8176 Update actions (# 2430)
> 0caafcb upgrade to latest dependencies (# 2429)
> 3b550af changeset: Look in packed-refs file if ref file not found. (# 2425)
> 5e98acd Make URL compatible with controller-gen (# 2431)
bumping knative.dev/networking 4337f03...1934422:
> 1934422 upgrade to latest dependencies (# 622)
> 17e1877 upgrade to latest dependencies (# 621)
> 48ac02f Update actions (# 620)
bumping knative.dev/serving a1a7287...7f681da:
> 7f681da Fixes an activator panic when the throttle encounters a cache.DeleteFinalStateUnknown (# 12679)
> d48569e Remove an unnecessary start delay when resolving tag to digests (# 12668)
> d846cbb Update community files (# 12664)
> 40029f9 bump ggcr which includes auth config lookup fixes for k8s (# 12655)
> 3945364 upgrade to latest dependencies (# 12645)
> 7e1dd36 Bump prometheus/client_golang to v1.11.1 (# 12653)
> 39df601 Update actions (# 12652)
> 24c178d Update net-contour nightly (# 12648)
> 88edca7 Update net-istio nightly (# 12651)
> d7409b7 Update net-certmanager nightly (# 12647)
> fa7aa27 Update net-kourier nightly (# 12638)
> c1aaaf6 Update net-gateway-api nightly (# 12609)
> b28062c Fix example to immediately collect any inactive revision (# 12422) (# 12517)
> 47e9f68 fix ytt package name (# 12644)
> 0cd25ac upgrade to latest dependencies (# 12633)
> aae1fff Updates val webhook selector to reduce invocations (# 12612)
> 70fa638 Update actions (# 12641)
bumping golang.org/x/term 6886f2d...03fcf44:
> 03fcf44 term: add codereview.cfg
> f766a8b term: enable TestMakeRawState on darwin/arm64
> 140adaa term: add portability note re: std{in,out} fds
bumping github.com/google/go-cmp d103655...039e37c:
> 039e37c Add //go:build lines (# 285)
> 3242228 Drop hacks to work around Go reflection bugs in Go1.9 (# 282)
> f59cd61 Update minimum supported version to go1.11 (# 281)
> 6faefd0 Reduce minimum length for specialize string diffing (# 275)
> f1773ad Use any alias instead of interface{} (# 276)
> 9094ef9 Change build status badge (# 269)
> 3ee52c8 Fix spelling mistakes (# 271)
> 395a0ac Use sha256 in test (# 268)
> 402949e Merge pull request # 266 from dsnet/fix-format
> 290a6a2 Avoid shadowing variable (# 263)
> d5fcb38 Fix textual printing of byte slices
> 248ccff Fix staticcheck findings (# 262)
bumping knative.dev/hack 0456e8b...e178598:
> e178598 Update community files (# 157)
> cf8cbc0 Fix the regex used for matching GitHub Actions files (# 156)
> a8ef7b6 Skip presubmit tests for .github updates (# 154)
Signed-off-by: Knative Automation <automation@knative.team>
|
||
|---|---|---|
| .. | ||
| diskcache | ||
| .travis.yml | ||
| LICENSE.txt | ||
| README.md | ||
| httpcache.go | ||
README.md
httpcache
Package httpcache provides a http.RoundTripper implementation that works as a mostly RFC 7234 compliant cache for http responses.
It is only suitable for use as a 'private' cache (i.e. for a web-browser or an API-client and not for a shared proxy).
This project isn't actively maintained; it works for what I, and seemingly others, want to do with it, and I consider it "done". That said, if you find any issues, please open a Pull Request and I will try to review it. Any changes now that change the public API won't be considered.
Cache Backends
- The built-in 'memory' cache stores responses in an in-memory map.
github.com/gregjones/httpcache/diskcacheprovides a filesystem-backed cache using the diskv library.github.com/gregjones/httpcache/memcacheprovides memcache implementations, for both App Engine and 'normal' memcache servers.sourcegraph.com/sourcegraph/s3cacheuses Amazon S3 for storage.github.com/gregjones/httpcache/leveldbcacheprovides a filesystem-backed cache using leveldb.github.com/die-net/lrucacheprovides an in-memory cache that will evict least-recently used entries.github.com/die-net/lrucache/twotierallows caches to be combined, for example to use lrucache above with a persistent disk-cache.github.com/birkelund/boltdbcacheprovides a BoltDB implementation (based on the bbolt fork).
If you implement any other backend and wish it to be linked here, please send a PR editing this file.