show/hide this revision's text 5 adding nltk tag
show/hide this revision's text 4 added 1 characters in body

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 module takes more then one minute which is totally unacceptable. How can I save the computation result somewhere so that the next import/reload doesn't have to compute it? I tried cPickle, but loading the dictionary variable from a file(1.3M) takes approximately the same time as computation.

To give more information about my problem,

FD = FreqDist(word for word in brown.words()) # this line of code take takes 1 min
show/hide this revision's text 3 added 155 characters in body

How to avoid computation every time a python module is importedreloaded

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 this module is imported import or reload of the heavy computation module takes more then one minute which is totally unacceptable. How can I save the computation result somewhere so that the next import import/reload doesn't have to compute it? I tried cPickle, but loading the dictionary variable from a file(1.3M) takes approximately the same time as computation.

To give more information about my problem,

FD = FreqDist(word for word in brown.words()) # this line of code take 1 min
show/hide this revision's text 2 deleted 1 characters in body
show/hide this revision's text 1