How to avoid computation every time a python module is reloaded

后端 未结 13 701
温柔的废话
温柔的废话 2021-02-06 10:55

I have a python module that makes use of a huge dictionary global variable, currently I put the computation code in the top section, every first time import or reload of the mod

相关标签:
13条回答
  • 2021-02-06 11:37

    You can use a shelve to store your data on disc instead of loading the whole data into memory. So startup time will be very fast, but the trade-off will be slower access time.

    Shelve will pickle the dict values too, but will do the (un)pickle not at startup for all the items, but only at access time for each item itself.

    0 讨论(0)
提交回复
热议问题