Skip to content

Repository files navigation

Cache gin's middleware

Build StatuscodecovGo Report CardGoDoc

Gin middleware/handler to enable Cache.

Usage

Start using it

Download and install it:

$ go get github.com/coty91/cache

Import it in your code:

import"github.com/coty91/cache"

Canonical example:

See the example

package main
import (
"fmt""time""github.com/coty91/cache""github.com/coty91/cache/persistence""github.com/gin-gonic/gin"
)
funcmain() {
r:=gin.Default()
store:=persistence.NewInMemoryStore(time.Second)
r.GET("/ping", func(c*gin.Context) {
c.String(200, "pong "+fmt.Sprint(time.Now().Unix()))
})
// Cached Pager.GET("/cache_ping", cache.CachePage(store, time.Minute, func(c*gin.Context) {
c.String(200, "pong "+fmt.Sprint(time.Now().Unix()))
}))
// Listen and Server in 0.0.0.0:8080r.Run(":8080")
}

About

Gin middleware/handler to enable Cache

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages