I am implementing a Unix user-space tool that needs to store a hash on disk. A hash will be read every program start, quite often. A hash should only store name: path values.
I looked at the bsddb standard library module for python, but I see that it will be deprecated in Python 3. I also saw the pickle standard library module.
I'm not a python guy, so what is an efficient way to serialize a hash and frequent open / read / close operations?
source
share