Hacker News new | ask | show | jobs
by ddbeck 5423 days ago
While not actually called memoize, Python 3.2 ships with the lru_cache decorator in the standard library module functools.

http://docs.python.org/dev/library/functools.html#functools....

1 comments

I'm aware, there was also almost an LFU cache decorator in there.