add readme.

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
This commit is contained in:
Bo-Yi Wu 2016-12-13 10:10:13 +08:00
parent fc95b17f6a
commit cf788af04f
1 changed files with 34 additions and 0 deletions

View File

@ -22,3 +22,37 @@ Import it in your code:
```go ```go
import "github.com/gin-contrib/static" import "github.com/gin-contrib/static"
``` ```
### Canonical example:
See the [example](example)
```go
package main
import (
"fmt"
"time"
"github.com/gin-contrib/cache"
"github.com/gin-contrib/cache/persistence"
"gopkg.in/gin-gonic/gin.v1"
)
func main() {
r := gin.Default()
store := persistence.NewInMemoryStore(time.Second)
// Cached Page
r.GET("/ping", func(c *gin.Context) {
c.String(200, "pong "+fmt.Sprint(time.Now().Unix()))
})
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")
}
```