CouchDB连接丢失且没有错误

时间:2012-07-20 23:35:50

标签: python couchdb-python

该程序正在用Python开发。它包含许多对远程CouchDB数据库的查询。程序开始运行,过了一会儿,它就冻结了。当我检查连接时,我发现CouchDB数据库连接已丢失。它仍然使用CPU而不做任何事情(它似乎是这样)。

def addNewDnsRecord(self, record):
     if self.checkHashValue(record['hashValue']):
         ....                                #some code to generate an id
         record['_id'] = tempid
         self.bulk.append(record)            #add record at the end of the bulk

         if len(self.bulk) == 1000:          #bulk with 1000 records are inserted
              self.dns_db.update(self.bulk)
              self.bulk = []

def checkHashValue(self, hashValue):
    result = self.dns_db.view('records/hashcheck', None, key=hashValue)
    if len(result) == 0:
          return True
    else:
          return False

其次,有没有办法在CouchDB-python中检查连接是否建立或丢失。

连接丢失的原因可能是什么?

0 个答案:

没有答案