shelve —- Python object persistence
Source code:Lib/shelve.py
A "shelf" is a persistent, dictionary-like object. The difference with "dbm"databases is that the values (not the keys!) in a shelf can be essentiallyarbitrary Python objects —- anything that the pickle
module can handle.This includes most class instances, recursive data types, and objects containinglots of shared sub-objects. The keys are ordinary strings.
shelve.
open
(filename, flag='c', protocol=None, writeback=False)- Open a persistent dictionary. The filename specified is the base filename forthe underlying database. As a side-effect, an extension may be added to thefilename and more than one file may be created. By default, the underlyingdatabase file is opened for reading and writing. The optional flag parameterhas the same interpretation as the flag parameter of
dbm.open()
.
By default, version 3 pickles are used to serialize values. The version of thepickle protocol can be specified with the protocol parameter.
Because of Python semantics, a shelf cannot know when a mutablepersistent-dictionary entry is modified. By default modified objects arewritten only when assigned to the shelf (see 示例). If theoptional writeback parameter is set to True
, all entries accessed are alsocached in memory, and written back on sync()
andclose()
; this can make it handier to mutate mutable entries inthe persistent dictionary, but, if many entries are accessed, it can consumevast amounts of memory for the cache, and it can make the close operationvery slow since all accessed entries are written back (there is no way todetermine which accessed entries are mutable, nor which ones were actuallymutated).
注解
Do not rely on the shelf being closed automatically; always callclose()
explicitly when you don't need it any more, oruse shelve.open()
as a context manager:
- with shelve.open('spam') as db:
- db['eggs'] = 'eggs'
警告
Because the shelve
module is backed by pickle
, it is insecureto load a shelf from an untrusted source. Like with pickle, loading a shelfcan execute arbitrary code.
Shelf objects support all methods supported by dictionaries. This eases thetransition from dictionary based scripts to those requiring persistent storage.
Two additional methods are supported:
Shelf.
sync
()Write back all entries in the cache if the shelf was opened with _writeback_set to
True
. Also empty the cache and synchronize the persistentdictionary on disk, if feasible. This is called automatically when the shelfis closed withclose()
.- Synchronize and close the persistent dict object. Operations on a closedshelf will fail with a
ValueError
.
参见
Persistent dictionary recipewith widely supported storage formats and having the speed of nativedictionaries.
Restrictions
The choice of which database package will be used (such as
dbm.ndbm
ordbm.gnu
) depends on which interface is available. Therefore it is notsafe to open the database directly usingdbm
. The database is also(unfortunately) subject to the limitations ofdbm
, if it is used —-this means that (the pickled representation of) the objects stored in thedatabase should be fairly small, and in rare cases key collisions may causethe database to refuse updates.The
shelve
module does not support concurrent read/write access toshelved objects. (Multiple simultaneous read accesses are safe.) When aprogram has a shelf open for writing, no other program should have it open forreading or writing. Unix file locking can be used to solve this, but thisdiffers across Unix versions and requires knowledge about the databaseimplementation used.class
shelve.
Shelf
(dict, protocol=None, writeback=False, keyencoding='utf-8')- A subclass of
collections.abc.MutableMapping
which stores pickledvalues in the dict object.
By default, version 3 pickles are used to serialize values. The version of thepickle protocol can be specified with the protocol parameter. See thepickle
documentation for a discussion of the pickle protocols.
If the writeback parameter is True
, the object will hold a cache of allentries accessed and write them back to the dict at sync and close times.This allows natural operations on mutable entries, but can consume much morememory and make sync and close take a long time.
The keyencoding parameter is the encoding used to encode keys before theyare used with the underlying dict.
A Shelf
object can also be used as a context manager, in whichcase it will be automatically closed when the with
block ends.
在 3.2 版更改: Added the keyencoding parameter; previously, keys were always encoded inUTF-8.
在 3.4 版更改: 添加了上下文管理器支持
- class
shelve.
BsdDbShelf
(dict, protocol=None, writeback=False, keyencoding='utf-8') A subclass of
Shelf
which exposesfirst()
,next()
,previous()
,last()
andsetlocation()
which are availablein the third-partybsddb
module from pybsddb but not in other databasemodules. The _dict object passed to the constructor must support thosemethods. This is generally accomplished by calling one ofbsddb.hashopen()
,bsddb.btopen()
orbsddb.rnopen()
. Theoptional protocol, writeback, and keyencoding parameters have the sameinterpretation as for theShelf
class.class
shelve.
DbfilenameShelf
(filename, flag='c', protocol=None, writeback=False)- A subclass of
Shelf
which accepts a filename instead of a dict-likeobject. The underlying file will be opened usingdbm.open()
. Bydefault, the file will be created and opened for both read and write. Theoptional flag parameter has the same interpretation as for theopen()
function. The optional protocol and writeback parameters have the sameinterpretation as for theShelf
class.
示例
To summarize the interface (key
is a string, data
is an arbitraryobject):
- import shelve
- d = shelve.open(filename) # open -- file may get suffix added by low-level
- # library
- d[key] = data # store data at key (overwrites old data if
- # using an existing key)
- data = d[key] # retrieve a COPY of data at key (raise KeyError
- # if no such key)
- del d[key] # delete data stored at key (raises KeyError
- # if no such key)
- flag = key in d # true if the key exists
- klist = list(d.keys()) # a list of all existing keys (slow!)
- # as d was opened WITHOUT writeback=True, beware:
- d['xx'] = [0, 1, 2] # this works as expected, but...
- d['xx'].append(3) # *this doesn't!* -- d['xx'] is STILL [0, 1, 2]!
- # having opened d without writeback=True, you need to code carefully:
- temp = d['xx'] # extracts the copy
- temp.append(5) # mutates the copy
- d['xx'] = temp # stores the copy right back, to persist it
- # or, d=shelve.open(filename,writeback=True) would let you just code
- # d['xx'].append(5) and have it work as expected, BUT it would also
- # consume more memory and make the d.close() operation slower.
- d.close() # close it
参见