Message187512
Memoization consumes memory during pickling. For now every memoized object requires memory for:
dict's entity;
an id() integer object;
a 2-element tuple;
a pickle's index (an integer object).
It's about 80 bytes on 32-bit platform (and twice as this on 64-bit). For data which contains a lot of floats it can be cumbersome. |
|
| Date |
User |
Action |
Args |
| 2013-04-21 16:16:10 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, pitrou, alexandre.vassalotti, asvetlov |
| 2013-04-21 16:16:10 | serhiy.storchaka | set | messageid: <[email protected]> |
| 2013-04-21 16:16:10 | serhiy.storchaka | link | issue17810 messages |
| 2013-04-21 16:16:10 | serhiy.storchaka | create | |
|