@@ -16,9 +16,7 @@ import (
16
16
// for each of the cached route paths's response
17
17
// register one client handler per route.
18
18
//
19
- // it's just calls a remote cache service server/handler,
20
- //
21
- // which lives on other, external machine.
19
+ // it's just calls a remote cache service server/handler, which may lives on other, external machine.
22
20
type ClientHandler struct {
23
21
// bodyHandler the original route's handler
24
22
bodyHandler context.Handler
@@ -81,11 +79,6 @@ func (h *ClientHandler) AddRule(r rule.Rule) *ClientHandler {
81
79
// this client is an exported to give you a freedom of change its Transport, Timeout and so on(in case of ssl)
82
80
var Client = & http.Client {Timeout : cfg .RequestCacheTimeout }
83
81
84
- const (
85
- methodGet = "GET"
86
- methodPost = "POST"
87
- )
88
-
89
82
// ServeHTTP , or remote cache client whatever you like, it's the client-side function of the ServeHTTP
90
83
// sends a request to the server-side remote cache Service and sends the cached response to the frontend client
91
84
// it is used only when you achieved something like horizontal scaling (separate machines)
@@ -113,7 +106,7 @@ func (h *ClientHandler) ServeHTTP(ctx *context.Context) {
113
106
uri .ServerAddr (h .remoteHandlerURL ).ClientURI (ctx .Request ().URL .RequestURI ()).ClientMethod (ctx .Request ().Method )
114
107
115
108
// set the full url here because below we have other issues, probably net/http bugs
116
- request , err := http .NewRequest (methodGet , uri .String (), nil )
109
+ request , err := http .NewRequest (http . MethodGet , uri .String (), nil )
117
110
if err != nil {
118
111
//// println("error when requesting to the remote service: " + err.Error())
119
112
// somehing very bad happens, just execute the user's handler and return
@@ -145,7 +138,7 @@ func (h *ClientHandler) ServeHTTP(ctx *context.Context) {
145
138
uri .Lifetime (h .life )
146
139
uri .ContentType (recorder .Header ().Get (cfg .ContentTypeHeader ))
147
140
148
- request , err = http .NewRequest (methodPost , uri .String (), bytes .NewBuffer (body )) // yes new buffer every time
141
+ request , err = http .NewRequest (http . MethodPost , uri .String (), bytes .NewBuffer (body )) // yes new buffer every time
149
142
150
143
// println("POST Do to the remote cache service with the url: " + request.URL.String())
151
144
if err != nil {
0 commit comments