Skip to content

jayakrishnandingit/cache_anthology

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cache_anthology

A collection of cache implementations in python.

LRU cache

Usage

Clone the repo: git clone [email protected]:jayakrishnandingit/cache_anthology.git

>> from cache_anthology.lru import Cache as LRUCache

>> cache = LRUCache()
>> cache.set('name', 'George Clooney')
>> cache.get('name')
George Clooney
>> cache.delete('name')

Running tests

>> cd cache_anthology
>> python3 -m unittest

About

A collection of cache implementations in python

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages