Skip to content
/ go-lfu Public

A Go library for handling LFU cache operations in O(1)

License

Notifications You must be signed in to change notification settings

teivah/go-lfu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Least Frequently Used Cache

A Go library for handling LFU cache operations in O(1):

  • Get
  • Insert
  • Get LFU

Whitepaper