Exemplo n.º 1
0
func init() {
	if _, err := os.Stat("cache"); err == nil {
		client = httpcache.NewPersistentClient("cache")
	} else {
		client = httpcache.NewVolatileClient()
	}
}
Exemplo n.º 2
0
func init() {
	if _, err := os.Stat("cache"); err == nil {
		client, err = httpcache.NewPersistentClient("cache", ttl)
		if err != nil {
			panic(err)
		}
	} else {
		client = httpcache.NewVolatileClient(ttl, 1024)
	}
}