Recent Posts

Building a fully typed LRU Cache in Python

10 minute read

In this post we are going to build a fully typed LRU (least recently used) cache (almost) from scratch using Python. We will then create a function decorator...