Gin middleware/handler to enable Cache.
Download and install it:
$ go get github.com/Sata51/cache
Import it in your code:
import "github.com/Sata51/cache"
See the example
package main
import (
"fmt"
"time"
"github.com/Sata51/cachee"
"github.com/Sata51/cache/persistence"
"github.com/gin-gonic/gin"
)
func main() {
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 Page
r.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:8080
r.Run(":8080")
}