package
Version:
v0.22.2
Opens a new window with list of versions in this module.
Published: Apr 14, 2024
License: MIT
Opens a new window with license information.
Imports: 10
Opens a new window with list of imports.
Imported by: 27
Opens a new window with list of known importers.
README
¶
Cachego - File driver
The driver stores the cache data in file.
Usage
package main
import (
"log"
"time"
"github.com/faabiosr/cachego/file"
)
func main() {
cache := file.New("./cache-dir/")
if err := cache.Save("user_id", "1", 10*time.Second); err != nil {
log.Fatal(err)
}
id, err := cache.Fetch("user_id")
if err != nil {
log.Fatal(err)
}
log.Printf("user id: %s \n", id)
}
Documentation
¶
Package file providers a cache driver that stores the cache content in files.
New creates an instance of File cache
Source Files
¶
Click to show internal directories.
Click to hide internal directories.