Skip to content

Commit

Permalink
Mutex to dynamically make changes
Browse files Browse the repository at this point in the history
Signed-off-by: Vishal Rana <vr@labstack.com>
  • Loading branch information
vishr committed Jan 22, 2017
1 parent 900a463 commit 0310604
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions echo.go
Expand Up @@ -70,6 +70,7 @@ type (
Validator Validator
Renderer Renderer
AutoTLSManager autocert.Manager
Mutex sync.RWMutex
Logger Logger
stdLogger *slog.Logger
colorer *color.Color
Expand Down Expand Up @@ -497,7 +498,13 @@ func (e *Echo) ReleaseContext(c Context) {

// ServeHTTP implements `http.Handler` interface, which serves HTTP requests.
func (e *Echo) ServeHTTP(w http.ResponseWriter, r *http.Request) {
// Acquire lock
e.Mutex.RLock()
defer e.Mutex.RUnlock()

// Acquire context
c := e.pool.Get().(*context)
defer e.pool.Put(c)
c.Reset(r, w)

// Middleware
Expand All @@ -521,8 +528,6 @@ func (e *Echo) ServeHTTP(w http.ResponseWriter, r *http.Request) {
if err := h(c); err != nil {
e.HTTPErrorHandler(err, c)
}

e.pool.Put(c)
}

// Start starts an HTTP server.
Expand Down

0 comments on commit 0310604

Please sign in to comment.