amaltasb at gmail.com writes: > So, Is Shelve a perfect solution (besides Mysql), to store large > key/value pairs, and which are updated frequently by multiple clients. No, shelve is for use within a single process. With multiple clients and frequent updates, you need a real database and some knowledge about how to use one.