Skip to content

Sata51/cache

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cache gin's middleware

Gin middleware/handler to enable Cache.

Usage

Start using it

Download and install it:

$ go get github.com/Sata51/cache

Import it in your code:

import "github.com/Sata51/cache"

Canonical example:

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")
}

About

Gin middleware/handler to enable Cache

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 99.9%
  • HTML 0.1%