Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ashiqyousuf/gocache

In memory caching system in go
https://github.com/ashiqyousuf/gocache

Last synced: 27 days ago
JSON representation

In memory caching system in go

Awesome Lists containing this project

README

        

# Implementing an in-memory cache in Go

##### Create a dyanmic cacher lib which stores the key value pairs in the Memory. There are 2 implementations of it so far, one which stores the cache for the life time of the entire application (which may lead to memory issues also) & the other which using an exiry timer to remove the particular key value from the cache.