Skip to content

Latest commit

 

History

History
17 lines (9 loc) · 416 Bytes

File metadata and controls

17 lines (9 loc) · 416 Bytes

LRU-cache

Service Layer for LRU cache implementation in javascript

Easy to grab problem explanation and ideas given by awesome guy here:

https://www.youtube.com/watch?v=S6IfqDXWa10&t=707s

LRU cache implementation with data-store publicly accessible.

An alternative would be to privatize the cache datastore and values only accessible by setter getter methods.

To start and test:

yarn install

yarn test