Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

lru cache python

from functools import lru_cache 
  
@lru_cache(maxsize = 100) 
def myfunc(args):
  // do something
 
PREVIOUS NEXT
Tagged: #lru #cache #python
ADD COMMENT
Topic
Name
8+6 =