chain

package
v0.16.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 20, 2021 License: MIT Imports: 3 Imported by: 0

README

Cachego - Chain driver

The chain driver deals with multiple driver at same time, it could save the key in multiple drivers and for fetching the driver will call the first one, if fails it will try the next until fail.

Usage

package main

import (
	"log"
	"time"

	bt "go.etcd.io/bbolt"

	"github.com/faabiosr/cachego/bolt"
	"github.com/faabiosr/cachego/chain"
	"github.com/faabiosr/cachego/sync"
)

func main() {
	db, err := bt.Open("cache.db", 0600, nil)
	if err != nil {
		log.Fatal(err)
	}

	cache := chain.New(
		bolt.New(db),
		sync.New(),
	)

	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

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func New

func New(drivers ...cachego.Cache) cachego.Cache

New creates an instance of Chain cache driver

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL