Skip to main content

Simple Object Storage - Persistent dicts and lists for python.

Project description

SOS: Simple Objects Storage

> persistant dictionaries and lists for python

This is ideal for lists or dictionaries which either need persistence, are too big to fit in memory or both.

There are existing alternatives like shelve, which are recommended for the default case.

There main difference with sos is that: - the data is stored in a text format (*) - it provides both persistent dicts and lists - for dicts, only string keys are allowed - objects must be json “dumpable” (no cyclic references, etc.) - it’s fast (much faster than shelve on windows, but slightly slower on linux) - it’s synchronous by design: when the function returns, you are sure it has been written on disk - it’s safe: even if the machine crashes in the middle of a big write, data will not be corrupted

(*) …actually, it’s nearly plain utf8 as it may contain some invalid utf8 characters in “garbage” bytes

Usage

Dictionaries: ` import sos db = sos.Dict('somefile') db['hello'] = 'persistence!' `

Lists: ` import sos db = sos.List('somefile') db.append('it is now saved in the file') `

Implementation notes

Why not make it async writes?

In the original version, there was a switch to choose between sync and async mode. However, it turned out to have only a relatively small impact on overall performance. Less than 25% on the hardware/OS/data I tested if I remember right. Since the benefits seem rather low, I removed the flag and the associated code altogether, in order to ensure safety by default. IMHO, it’s preferable to loose a few microseconds rather than data upon a crash.

Why not use memory mapped files?

I experimented with that too. In my experience, with the hardware/OS/data I tested, it turned out to …*suck*. Using memory mapped files lead to inconsistent and unpredictible performance, often much slower than direct file access.

Why do you read values too when loading?

Of course, it could be done much faster if only keys would be read! However, here as well, I opted for safety first. The loading takes a couple of seconds more, but at least you know your data is ok, instead of exploding in your face later at runtime.

Project details


Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page