HI,
I am implementing some unix userland tool, that needs to store hash on the disk. The hash will be read every run of a program, pretty frequently. To give you better insight, the hash needs to store "name:path" values only.
I looked at bdbd module for python, but I can see it will be deprecated in Python 3. Also saw Pickle.
Im not a Py Guy, so what is the efficient way for hash serialization and frequent open/read/close operations.