Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

Cache Function Execution

Demonstrates the dramatic performance difference between cached and uncached recursive Fibonacci computation using functools.cache. The cached version runs orders of magnitude faster by memoizing previously computed results.

Usage

python cache_func_execution.py