Changes between Initial Version and Version 1 of Ticket #21351, comment 10


Ignore:
Timestamp:
Nov 4, 2013, 12:48:43 PM (10 years ago)
Author:
Bouke Haarsma

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`.
     1As 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`.
    22
    33{{{
Back to Top