Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
9a62d9d5
Commit
9a62d9d5
authored
Aug 14, 2010
by
Raymond Hettinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support cache sizes.
parent
a69906b5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
49 additions
and
1 deletion
+49
-1
Lib/functools.py
Lib/functools.py
+1
-1
Lib/test/test_functools.py
Lib/test/test_functools.py
+48
-0
No files found.
Lib/functools.py
View file @
9a62d9d5
...
...
@@ -144,7 +144,7 @@ def lfu_cache(maxsize=100):
wrapper
.
misses
+=
1
if
len
(
cache
)
>
maxsize
:
# purge the 10% least frequently used entries
for
key
,
_
in
nsmallest
(
maxsize
//
10
,
for
key
,
_
in
nsmallest
(
maxsize
//
10
or
1
,
use_count
.
items
(),
key
=
itemgetter
(
1
)):
del
cache
[
key
],
use_count
[
key
]
...
...
Lib/test/test_functools.py
View file @
9a62d9d5
...
...
@@ -482,6 +482,30 @@ class TestLRU(unittest.TestCase):
self
.
assertEqual
(
f
.
hits
,
0
)
self
.
assertEqual
(
f
.
misses
,
1
)
# test size zero (which means "never-cache")
f_cnt
=
0
@
functools
.
lru_cache
(
0
)
def
f
():
nonlocal
f_cnt
f_cnt
+=
1
return
20
self
.
assertEqual
(
f
(),
20
)
self
.
assertEqual
(
f
(),
20
)
self
.
assertEqual
(
f
(),
20
)
self
.
assertEqual
(
f_cnt
,
3
)
# test size one
f_cnt
=
0
@
functools
.
lru_cache
(
1
)
def
f
():
nonlocal
f_cnt
f_cnt
+=
1
return
20
self
.
assertEqual
(
f
(),
20
)
self
.
assertEqual
(
f
(),
20
)
self
.
assertEqual
(
f
(),
20
)
self
.
assertEqual
(
f_cnt
,
1
)
def
test_lfu
(
self
):
def
orig
(
x
,
y
):
return
3
*
x
+
y
...
...
@@ -503,6 +527,30 @@ class TestLRU(unittest.TestCase):
self
.
assertEqual
(
f
.
hits
,
0
)
self
.
assertEqual
(
f
.
misses
,
1
)
# test size zero (which means "never-cache")
f_cnt
=
0
@
functools
.
lfu_cache
(
0
)
def
f
():
nonlocal
f_cnt
f_cnt
+=
1
return
20
self
.
assertEqual
(
f
(),
20
)
self
.
assertEqual
(
f
(),
20
)
self
.
assertEqual
(
f
(),
20
)
self
.
assertEqual
(
f_cnt
,
3
)
# test size one
f_cnt
=
0
@
functools
.
lfu_cache
(
1
)
def
f
():
nonlocal
f_cnt
f_cnt
+=
1
return
20
self
.
assertEqual
(
f
(),
20
)
self
.
assertEqual
(
f
(),
20
)
self
.
assertEqual
(
f
(),
20
)
self
.
assertEqual
(
f_cnt
,
1
)
def
test_main
(
verbose
=
None
):
test_classes
=
(
TestPartial
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment