Python Disk-Based Dictionary - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T12:52:41Zhttp://stackoverflow.com/feeds/question/226693http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/226693/python-disk-based-dictionary11Python Disk-Based DictionaryClaudiu2008-10-22T17:00:11Z2008-11-18T10:51:35Z
<p>Hello,</p>
<p>I was running some dynamic programming code (trying to brute-force disprove the Collatz conjecture =P) and I was using a dict to store the lengths of the chains I had already computed. Obviously, it ran out of memory at some point. Is there any easy way to use some variant of a <code>dict</code> which will page parts of itself out to disk when it runs out of room? Obviously it will be slower than an in-memory dict, and it will probably end up eating my hard drive space, but this could apply to other problems that are not so futile.</p>
<p>I realized that a disk-based dictionary is pretty much a database, so I manually implemented one using sqlite3, but I didn't do it in any smart way and had it look up every element in the DB one at a time... it was about 300x slower.</p>
<p>Is the smartest way to just create my own set of dicts, keeping only one in memory at a time, and paging them out in some efficient manner?</p>
http://stackoverflow.com/questions/226693/python-disk-based-dictionary/226796#2267966Answer by Parand for Python Disk-Based DictionaryParand2008-10-22T17:34:09Z2008-10-22T17:34:09Z<p>Hash-on-disk is generally addressed with Berkeley DB or something similar - several options are listed in the <a href="http://www.python.org/doc/2.5.2/lib/persistence.html" rel="nofollow">Python Data Persistence documentation</a>. You can front it with an in-memory cache, but I'd test against native performance first; with operating system caching in place it might come out about the same.</p>
http://stackoverflow.com/questions/226693/python-disk-based-dictionary/226803#2268032Answer by Charles Duffy for Python Disk-Based DictionaryCharles Duffy2008-10-22T17:37:24Z2008-10-22T17:37:24Z<p>Last time I was facing a problem like this, I rewrote to use SQLite rather than a dict, and had a massive performance increase. That performance increase was at least partially on account of the database's indexing capabilities; depending on your algorithms, YMMV.</p>
<p>A thin wrapper that does SQLite queries in <code>__getitem__</code> and <code>__setitem__</code> isn't much code to write.</p>
http://stackoverflow.com/questions/226693/python-disk-based-dictionary/226837#2268370Answer by Vinko Vrsalovic for Python Disk-Based DictionaryVinko Vrsalovic2008-10-22T17:50:46Z2008-10-22T17:50:46Z<p>You should bring more than one item at a time if there's some heuristic to know which are the most likely items to be retrieved next, and don't forget the indexes like Charles mentions.</p>
http://stackoverflow.com/questions/226693/python-disk-based-dictionary/226900#2269002Answer by Therms for Python Disk-Based DictionaryTherms2008-10-22T18:01:42Z2008-10-22T18:01:42Z<p>With a little bit of thought it seems like you could get the <a href="http://blog.doughellmann.com/2007/08/pymotw-shelve.html" rel="nofollow">shelve module</a> to do what you want.</p>
http://stackoverflow.com/questions/226693/python-disk-based-dictionary/228333#2283332Answer by John Fouhy for Python Disk-Based DictionaryJohn Fouhy2008-10-23T02:21:40Z2008-10-23T02:21:40Z<p>The <a href="http://docs.python.org/library/shelve.html" rel="nofollow">shelve</a> module may do it; at any rate, it should be simple to test. Instead of:</p>
<pre><code>self.lengths = {}
</code></pre>
<p>do:</p>
<pre><code>import shelve
self.lengths = shelve.open('lengths.shelf')
</code></pre>
<p>The only catch is that keys to shelves must be strings, so you'll have to replace</p>
<pre><code>self.lengths[indx]
</code></pre>
<p>with</p>
<pre><code>self.lengths[str(indx)]
</code></pre>
<p>(I'm assuming your keys are just integers, as per your comment to Charles Duffy's post)</p>
<p>There's no built-in caching in memory, but your operating system may do that for you anyway.</p>
<p>[actually, that's not quite true: you can pass the argument 'writeback=True' on creation. The intent of this is to make sure storing lists and other mutable things in the shelf works correctly. But a side-effect is that the whole dictionary is cached in memory. Since this caused problems for you, it's probably not a good idea :-) ]</p>
http://stackoverflow.com/questions/226693/python-disk-based-dictionary/228837#2288374Answer by Matthew Trevor for Python Disk-Based DictionaryMatthew Trevor2008-10-23T07:22:01Z2008-10-23T07:22:01Z<p>The 3rd party <a href="http://pypi.python.org/pypi/shove" rel="nofollow">shove</a> module is also worth taking a look at. It's very similar to shelve in that it is a simple dict-like object, however it can store to various backends (such as file, SVN, and S3), provides optional compression, and is even threadsafe. It's a very handy module</p>
<pre><code>from shove import Shove
mem_store = Shove()
file_store = Shove('file://mystore')
file_store['key'] = value
</code></pre>
http://stackoverflow.com/questions/226693/python-disk-based-dictionary/229758#2297580Answer by bortzmeyer for Python Disk-Based Dictionarybortzmeyer2008-10-23T13:42:31Z2008-10-23T13:42:31Z<p>I did not try it yet but <a href="http://hamsterdb.com/" rel="nofollow">Hamster DB</a> is promising and has a Python interface.</p>
http://stackoverflow.com/questions/226693/python-disk-based-dictionary/298401#2984010Answer by slav0nic for Python Disk-Based Dictionaryslav0nic2008-11-18T10:41:46Z2008-11-18T10:41:46Z<p>read answer for this question from GvR ;)
<a href="http://neopythonic.blogspot.com/2008/10/sorting-million-32-bit-integers-in-2mb.html" rel="nofollow">Sorting a million 32-bit integers in 2MB of RAM using Python</a></p>
http://stackoverflow.com/questions/226693/python-disk-based-dictionary/298422#2984220Answer by e-satis for Python Disk-Based Dictionarye-satis2008-11-18T10:51:35Z2008-11-18T10:51:35Z<p>I've read you think shelve is too slow and you tried to hack your own dict using sqlite.</p>
<p>Another did this too :</p>
<p><a href="http://sebsauvage.net/python/snyppets/index.html#dbdict" rel="nofollow">http://sebsauvage.net/python/snyppets/index.html#dbdict</a></p>
<p>It seems pretty efficient (and sebsauvage is a pretty good coder). Maybe you could give it a try ?</p>