Whenever I import a module, with a cached function, in more than one python instance, I get a Resource temporarily unavailable error on the module.py.cache file.
This is a bit of a nuisance since I then have to kill the first process to let a script run. Wouldn't this be fixed by setting the optional writeback parameter for the shelve object?
Whenever I import a module, with a cached function, in more than one python instance, I get a
Resource temporarily unavailableerror on themodule.py.cachefile.This is a bit of a nuisance since I then have to kill the first process to let a script run. Wouldn't this be fixed by setting the optional writeback parameter for the shelve object?