Skip to content

Efficient object cache for golang. In memory caching for golang applications

Notifications You must be signed in to change notification settings

skairali/objcache

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

objcache

Synchronised Object Cache for golang.

Usage


	objcache = Cache()
	objcache.Set("integer",1)
	objcache.Set("string","sudheesh")

	
	value,err := objcache.Get("string")
	if err == nil {
		fmt.Println("String in cache ", value)
	} else {
	fmt.Println("Sudheesh has lost his touch !!!")
	}
  

About

Efficient object cache for golang. In memory caching for golang applications

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages