Skip to content

Commit

Permalink
Change: lru cache link
Browse files Browse the repository at this point in the history
  • Loading branch information
esadek committed Nov 3, 2024
1 parent 0a0a9f6 commit 5c6925b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/blog/python-memoization.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ memoization:
(new in Python 3.2) and
[`cache`](https://docs.python.org/3/library/functools.html#functools.cache) (new
in Python 3.9). These decorators use a
[least recently used (LRU)](https://en.wikipedia.org/wiki/Cache_replacement_policies#Least_recently_used_(LRU))
[least recently used (LRU)](https://en.wikipedia.org/wiki/Cache_replacement_policies#Least_Recently_Used_(LRU))
cache, which stores items in order of use, discarding the least recently used
items to make room for new items.

Expand Down

0 comments on commit 5c6925b

Please sign in to comment.