Skip to content

Vikram222726/gocache

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gocache

Implemention of simple cache in golang

  • Used golang version 1.21.6
  • Used map for caching key value pairs and serving requests in O(1) time complexity
  • Used Doubly Linked List in order to support Insert, Update and Delete operations in our cache in O(1) time complexity
  • Used mutex locks from golang in order to keep data Insert, Read, Update and Delete operations atomic.
  • Hosted the complete cache service on localhost server.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages