sm
/
cache
1
0
Fork 0

Add import statement to examples

This commit is contained in:
Patrick Mylund Nielsen 2012-01-04 10:08:41 +01:00
parent ac4bda9dea
commit 3a434fd350
2 changed files with 4 additions and 0 deletions

2
README
View File

@ -6,6 +6,8 @@ Installation:
goinstall github.com/pmylund/go-cache
Usage:
import "github.com/pmylund/go-cache"
// Create a cache with a default expiration time of 5 minutes, and which purges
// expired items every 30 seconds
c := cache.New(5*time.Minute, 30*time.Second)

View File

@ -16,6 +16,8 @@ import (
// goinstall github.com/pmylund/go-cache
//
// Usage:
// import "github.com/pmylund/go-cache"
//
// // Create a cache with a default expiration time of 5 minutes, and which purges
// // expired items every 30 seconds
// c := cache.New(5*time.Minute, 30*time.Second)