Changes between Initial Version and Version 1 of Ticket #21351, comment 10
- Timestamp:
- Nov 4, 2013, 12:48:43 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #21351, comment 10
initial v1 1 As discussed on IRC, a few benchmarks comparing `memoize` with `lru_cache` and `lru_cache`'s backport. Also, another column with the statistics bookkeeping in the backport disabled for extra speed. These results are achieved with ` maxsize=None`.1 As discussed on IRC, a few benchmarks comparing `memoize` with `lru_cache` and `lru_cache`'s backport. Also, another column with the statistics bookkeeping in the backport disabled for extra speed. These results are achieved with `lru_cache(maxsize=None)`, as that doesn't involve locking and is comparable to `memoize`. 2 2 3 3 {{{