implement lru cache in python code example
Example: lru cache python
from functools import lru_cache
@lru_cache(maxsize = 100)
def myfunc(args):
// do something
from functools import lru_cache
@lru_cache(maxsize = 100)
def myfunc(args):
// do something