Skip to content

sanposhiho/memem

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Memem

Memem is in-memory cache package.

The key is of type string and the value can be any Object.

Get Start

go get -u github.com/harukitosa/memem

sample

package main

import (
	"log"

	"github.com/harukitosa/memem"
)

func main() {
	c := memem.NewCache()
	c.Set("key", "valued")
	log.Println(c.Get("key"))
}

Contributing

We are waiting for the pullrequest.

About

go inmemory cache

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%