shelve documentation说:



那什么意识?如何确定选择哪个包装?如何严格定义必须选择哪一个?最好使用哪种数据库实现?

最佳答案

在这里找到它:
http://www.gossamer-threads.com/lists/python/python/13891

import shelve
import gdbm

def gdbm_shelve(filename, flag="c"):
    return shelve.Shelf(gdbm.open(filename, flag))

db = gdbm_shelve("dbfile")

ps
在链接页面中,也有人在某处找到了此链接,但他的链接已死。

09-13 12:43