Skip to content

An in-memory cache implementation of an fsm.Store

License

Notifications You must be signed in to change notification settings

fsm/cache-store

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

FSM

Version MIT License Go Report Card Join the community on Spectrum

Cache Store

This package is a in-memory cache implementation of a fsm.Store.

Note: This store is NOT recommended for use in production, but is the quickest way to get started in development.

Getting Started

package main

import "github.com/fsm/cache-store"

func main() {
    store := cachestore.New()
    // ...
}