Code Monkey home page Code Monkey logo

cache's Introduction

Auto refreshing cache

A golang package that provides auto refreshing cache interface for various data sources.

To use library:

import "github.com/mhrabovcin/cache/pkg/cache"

Concepts

A library work around a concept of a global Cache that consists of multiple Sources. Each Source is independent cache that can be configured with different source and refresh frequency.

Interface

The library provides basic interface for accessing cached data:

c := cache.New(source1, source2, ...)
item, err := c.Get("source_name", "key")
item.Value()

Each source is independent and can be configured with own data source and refresh frequency. A general Source usage:

source1 := cache.NewSource(
    "source_name",
    cache.WithDefaultData(map[string]string{
        "intial_key": "inital_value",
    }),
)
// Required to stop automatic fetching goroutine
defer source1.Stop()

item, err := source1.Get("cache_key")
item.Value()

Source always returns a Item that includes Metadata. If cache refresh fails the cache source will serve stale data. To check when data was refreshed use Item methods:

item, err := source1.Get("cache_key")

// When the item was last refreshed
item.LastRefreshed()

// If the item is stale
item.IsStale()

// When the chace will be refreshed again
item.NextRefresh()

Data sources

Redis and Database sources are supported.

cache.NewRedisSource(...)
cache.NewDbSource(...)
cache.NewStaticSource(...)

Custom data sources

It is possible to provide custom data fetcher to general cache Source. A data fetcher must implement FetchFunc interface.

func myFetcher() (map[string]string, error) {
    return map[string]string{}, nil
}

customSource := cache.NewSource(
    "custom_source",
    // Refresh every 1 hour
    cache.WithFetchFunc(myFetcher, 1*time.Hour),
)

Development

A library was built with Go 1.12 version and uses go modules.

To run tests:

make coverage

To run benchmark

make bench

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.