generated from cloudwego/.github
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: initialize Souin * feat(chore): add server * feat: add licence header and main entry
- Loading branch information
Showing
10 changed files
with
2,420 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,38 @@ | ||
# .github | ||
Hertz middleware: HTTP cache | ||
================================ | ||
|
||
This is a distributed HTTP cache module for Hertz based on [Souin](https://github.com/darkweak/souin) HTTP cache. | ||
|
||
## Features | ||
|
||
* [RFC 7234](https://httpwg.org/specs/rfc7234.html) compliant HTTP Cache. | ||
* Sets [the `Cache-Status` HTTP Response Header](https://httpwg.org/http-extensions/draft-ietf-httpbis-cache-header.html) | ||
* REST API to purge the cache and list stored resources. | ||
* Builtin support for distributed cache. | ||
* Tag-based invalidation. | ||
|
||
|
||
## Example | ||
There is the example about the HTTP cache initialization. | ||
```go | ||
import ( | ||
"context" | ||
"net/http" | ||
|
||
// ... | ||
httpcache "github.com/hertz-contrib/httpcache/server" | ||
) | ||
|
||
func main() { | ||
// ... | ||
h.Use(httpcache.NewHTTPCache(httpcache.DevDefaultConfiguration)) | ||
// ... | ||
} | ||
``` | ||
With that your application will be able to cache the responses if possible and returns at least the `Cache-Status` HTTP header with the different directives mentioned in the RFC specification. | ||
You have to pass a Hertz `Configuration` structure into the `NewHTTPCache` method (you can use the `DefaultConfiguration` variable to have a built-in production ready configuration). | ||
See the full detailed configuration names [here](https://github.com/darkweak/souin#optional-configuration). | ||
|
||
Other resources | ||
--------------- | ||
See the [Souin](https://github.com/darkweak/souin) configuration for the full configuration, and its associated [development hertz middleware](https://github.com/darkweak/souin/blob/master/plugins/hertz) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module github.com/hertz-contrib/httpcache | ||
|
||
go 1.19 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* | ||
* Copyright 2023 CloudWeGo Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package httpcache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
* Copyright 2023 CloudWeGo Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package main | ||
|
||
import ( | ||
"context" | ||
"net/http" | ||
|
||
"github.com/cloudwego/hertz/pkg/app" | ||
"github.com/cloudwego/hertz/pkg/app/server" | ||
httpcache "github.com/hertz-contrib/httpcache/server" | ||
) | ||
|
||
func main() { | ||
// Server example | ||
h := server.Default(server.WithHostPorts(":80")) | ||
|
||
h.Use(httpcache.NewHTTPCache(httpcache.DevDefaultConfiguration)) | ||
|
||
h.GET("/*path", func(c context.Context, ctx *app.RequestContext) { | ||
ctx.String(http.StatusOK, "Hello Hertz!") | ||
}) | ||
|
||
h.Spin() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
module github.com/hertz-contrib/httpcache/server | ||
|
||
go 1.17 | ||
|
||
require ( | ||
github.com/cloudwego/hertz v0.6.2 | ||
github.com/darkweak/souin v1.6.37 | ||
) | ||
|
||
require ( | ||
github.com/RoaringBitmap/roaring v1.2.3 // indirect | ||
github.com/armon/go-metrics v0.4.1 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/bits-and-blooms/bitset v1.5.0 // indirect | ||
github.com/buraksezer/consistent v0.10.0 // indirect | ||
github.com/buraksezer/olric v0.5.4 // indirect | ||
github.com/bwmarrin/snowflake v0.3.0 // indirect | ||
github.com/bytedance/go-tagexpr/v2 v2.9.2 // indirect | ||
github.com/bytedance/gopkg v0.0.0-20220413063733-65bf48ffb3a7 // indirect | ||
github.com/bytedance/sonic v1.8.1 // indirect | ||
github.com/cespare/xxhash v1.1.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect | ||
github.com/cloudwego/netpoll v0.3.1 // indirect | ||
github.com/coreos/go-semver v0.3.1 // indirect | ||
github.com/coreos/go-systemd/v22 v22.5.0 // indirect | ||
github.com/darkweak/go-esi v0.0.5 // indirect | ||
github.com/dgraph-io/badger/v3 v3.2103.5 // indirect | ||
github.com/dgraph-io/ristretto v0.1.1 // indirect | ||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect | ||
github.com/dustin/go-humanize v1.0.1 // indirect | ||
github.com/fsnotify/fsnotify v1.6.0 // indirect | ||
github.com/go-redis/redis/v8 v8.11.5 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/glog v1.0.0 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/google/btree v1.1.2 // indirect | ||
github.com/google/flatbuffers v23.1.21+incompatible // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect | ||
github.com/hashicorp/go-msgpack v0.5.5 // indirect | ||
github.com/hashicorp/go-multierror v1.1.1 // indirect | ||
github.com/hashicorp/go-sockaddr v1.0.2 // indirect | ||
github.com/hashicorp/golang-lru v0.5.5-0.20200511160909-eb529947af53 // indirect | ||
github.com/hashicorp/logutils v1.0.0 // indirect | ||
github.com/hashicorp/memberlist v0.5.0 // indirect | ||
github.com/henrylee2cn/ameda v1.4.10 // indirect | ||
github.com/henrylee2cn/goutil v0.0.0-20210127050712-89660552f6f8 // indirect | ||
github.com/imdario/mergo v0.3.13 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/klauspost/compress v1.16.0 // indirect | ||
github.com/klauspost/cpuid/v2 v2.0.9 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect | ||
github.com/miekg/dns v1.1.51 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/mschoch/smat v0.2.0 // indirect | ||
github.com/nyaruka/phonenumbers v1.0.55 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pquerna/cachecontrol v0.1.0 // indirect | ||
github.com/prometheus/client_golang v1.14.0 // indirect | ||
github.com/prometheus/client_model v0.3.0 // indirect | ||
github.com/prometheus/common v0.40.0 // indirect | ||
github.com/prometheus/procfs v0.9.0 // indirect | ||
github.com/redis/go-redis/v9 v9.0.2 // indirect | ||
github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 // indirect | ||
github.com/tidwall/btree v1.6.0 // indirect | ||
github.com/tidwall/gjson v1.13.0 // indirect | ||
github.com/tidwall/match v1.1.1 // indirect | ||
github.com/tidwall/pretty v1.2.0 // indirect | ||
github.com/tidwall/redcon v1.6.2 // indirect | ||
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect | ||
github.com/vmihailenco/msgpack/v5 v5.3.5 // indirect | ||
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect | ||
github.com/xujiajun/mmap-go v1.0.1 // indirect | ||
github.com/xujiajun/nutsdb v0.11.1 // indirect | ||
github.com/xujiajun/utils v0.0.0-20220904132955-5f7c5b914235 // indirect | ||
go.etcd.io/etcd/api/v3 v3.5.7 // indirect | ||
go.etcd.io/etcd/client/pkg/v3 v3.5.7 // indirect | ||
go.etcd.io/etcd/client/v3 v3.5.7 // indirect | ||
go.opencensus.io v0.24.0 // indirect | ||
go.uber.org/atomic v1.7.0 // indirect | ||
go.uber.org/multierr v1.6.0 // indirect | ||
go.uber.org/zap v1.21.0 // indirect | ||
golang.org/x/arch v0.0.0-20210923205945-b76863e36670 // indirect | ||
golang.org/x/mod v0.8.0 // indirect | ||
golang.org/x/net v0.7.0 // indirect | ||
golang.org/x/sync v0.1.0 // indirect | ||
golang.org/x/sys v0.5.0 // indirect | ||
golang.org/x/text v0.7.0 // indirect | ||
golang.org/x/tools v0.6.0 // indirect | ||
google.golang.org/genproto v0.0.0-20230227214838-9b19f0bdc514 // indirect | ||
google.golang.org/grpc v1.53.0 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.