0

tcdb用来保存大型键值存储。键是代表用户 ID 的字符串,值是形式的字典

{'coord':0,'node':0,'way':0,'relation':0}

商店通过迭代具有坐标、节点、方式和关系对象的数据文件来填充,每个对象都链接到一个特定的用户。这是我增加字段的代码:

def increment(self,uid,typ):
    uid = str(uid)
    type = str(typ)
    try:
        self.cache[uid][typ] += 1
    except KeyError:
        try:
            self.cache[uid][typ] = 1
        except KeyError:
            try:
                print 'creating record for %s' % uid
                self.cache[uid] = {'coord':0,'node':0,'way':0,'relation':0}
            except KeyError:
                print 'something\'s messed up'

这不起作用。我最终得到一个全为零值的表:

def result(self):
    print 'cache is now %i records' % len(self.cache)
    for key in self.cache:
        print key + ': ' + str(self.cache[key])

产量:

...
4951: {'node': 0, 'coord': 0, 'relation': 0, 'way': 0}
409553: {'node': 0, 'coord': 0, 'relation': 0, 'way': 0}
92274: {'node': 0, 'coord': 0, 'relation': 0, 'way': 0}
259040: {'node': 0, 'coord': 0, 'relation': 0, 'way': 0}
...

为什么?

永远不会调用最后一个异常。

编辑try一块中的这段代码:

        tempdict = self.cache[uid]
        tempdict[typ] = tempdict.get(typ,0) + 1
        self.cache[uid] = tempdict

而不是原来的

        self.cache[uid][typ] += 1

有效,但对我来说真的很难看。

4

1 回答 1

2

在这一行之后:

self.cache[uid] = {'coord':0,'node':0,'way':0,'relation':0}

添加这个:

self.cache[uid][type] = 1

另外,请不要type用作变量名,因为它隐藏了同名的内置函数。

于 2011-12-03T19:53:27.390 回答