0

这是可笑的微不足道,但我花了半个小时试图解决它。

class SocialPost(model.Model):
  total_comments=model.IntegerProperty(default=0)

def create_reply_comment(self,content,author):
    ...
    logging.info(self)
    self.total_comments=self.total_comments+1
    self.put()

在日志文件中,我可以看到 total_comments 是 0,但在管理控制台中,它是 1。其他字段是正确的,除了这个。

可能那个“default = 0”有问题,但我找不到问题所在。

编辑:我的功能的完整代码

def create_reply_comment(self,content,author): floodControl=memcache.get("FloodControl-"+str(author.key)) if floodControl: raise base.FloodControlException

    new_comment= SocialComment(parent=self.key)
    new_comment.author=author.key
    new_comment.content=content
    new_comment.put()

    logging.info(self)
    self.latest_comment_date=new_comment.creation_date
    self.latest_comment=new_comment.key
    self.total_comments=self.total_comments+1
    self.put()
    memcache.add("FloodControl-"+str(author.key), datetime.now(),time=SOCIAL_FLOOD_TIME)

我在哪里调用函数:

if cmd == "create_reply_post":
           post=memcache.get("SocialPost-"+str(self.request.get('post')))
           if post is None:
              post=model.Key(urlsafe=self.request.get('post')).get()
              memcache.add("SocialPost-"+str(self.request.get('post')),post)
           node=node.get()
           if not node.get_subscription(user).can_reply:
               self.success()
               return


           post.create_reply_comment(feedparser._sanitizeHTML(self.request.get("content"),"UTF-8"),user)  
4

1 回答 1

0

您在更改total_comments 之前调用了memcache.add,因此当您在后续调用中从memcache 中读取它时,您会从缓存中获得一个过时的值。您的 create_reply_comment 需要删除或覆盖"SocialPost-"+str(self.request.get('post')缓存键。

[编辑] 虽然你的帖子标题说你正在使用 NDB(model.Model 虽然?嗯。),所以你可以完全跳过 memcache 位,让 NDB 做这件事?

于 2012-09-12T20:13:29.633 回答