Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ashiqyousuf/gocache
- Owner: ashiqYousuf
- Created: 2024-04-17T05:00:56.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-04-18T08:57:11.000Z (8 months ago)
- Last Synced: 2024-04-18T10:42:46.551Z (8 months ago)
- Language: Go
- Size: 6.84 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
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.