搁架(或泡菜)不能正确保存对象的字典。它只是丢失了数据

时间:2016-11-30 13:22:14

标签: python pickle shelve dumpdata

我决定为个人需求创建一个小的跟踪列表。 我创建了两个主要类来存储和处理数据。第一个代表主题和练习列表。第二个代表练习列表中的每个练习(主要是两个变量,所有(整个)答案和正确(好)答案)。

class Subject:
    def __init__(self, name):
        self.name = name
        self.exercises = []

    def add(self, exc):
        self.exercises.append(exc)

    # here is also "estimate" and __str__ methods, but they don't matter


class Exercise:
    def __init__(self, good=0, whole=20):
        self._good  = good
        self._whole = whole

    def modify(self, good, whole=20):
        self._good  = good
        self._whole = whole

    # here is also "estimate" and __str__ methods, but they don't matter

我定义了一个字典,用Subject实例填充它,将其转移到shelve文件并保存。

with shelve.open("shelve_classes") as db:
    db.update(initiate())

这是表示(启动状态):

#Comma splices & Fused sentences (0.0%)
#0/20      0.0%
#0/20      0.0%
#0/20      0.0%
#0/20      0.0%
#0/20      0.0%

之后,我尝试重新打开转储文件并更新一些值。

with shelve.open('shelve_classes') as db:
    key = 'Comma splices & Fused sentences'
    sub = db[key]
    sub.exercises[0].modify(18)
    db[key] = sub

看起来没问题,让我们回顾一下:

print(db[key])

#Comma splices & Fused sentences (18.0%)
#18/20     90.0%
#0/20      0.0%
#0/20      0.0%
#0/20      0.0%
#0/20      0.0%

但是当我关闭文件时,下次打开它时,它会返回启动状态并且所有修正都会丢失。即使尝试用泡菜,也不适用于那里。无法弄清楚,为什么它没有保存数据。

2 个答案:

答案 0 :(得分:3)

shelve模块在​​您改变对象时不会注意到,只有在您指定对象时才会注意到:

  

由于Python语义,架子无法知道何时修改了可变的持久字典条目。默认情况下,只有在分配给工具架时才会写入修改后的对象。

所以它不会认识到sub.exercises[0].modify(18)是一个需要重写回磁盘的动作。

尝试在打开数据库时将writeback标志设置为True。然后它会在数据库关闭时重新保存数据库,即使它没有明确检测到任何更改。

with shelve.open('shelve_classes', writeback=True) as db:
    key = 'Comma splices & Fused sentences'
    sub = db[key]
    sub.exercises[0].modify(18)
    db[key] = sub

答案 1 :(得分:-2)

你不需要关闭数据库吗?喜欢

    db.close()