0

视图.py

def add_post(topic, request):
    post_form = PostForm(request.POST)
    if 'submit' in request.POST and post_form.validate():
        post = Post(body=post_form.body.data)
        post.user = request.user
        post.topic = topic
        DBSession.add(post)
        request.session.flash(_('Post was added'))
        transaction.commit()
        raise HTTPFound(location=request.route_url('topic',id=topic.id))
    return {'post_form':post_form}

模型.py

class Topic(Base):
    __tablename__ = 'topics'
    id = Column(Integer, primary_key=True)
    ...
    post_count = Column(Integer, default=0)
    posts = relationship('Post', primaryjoin="Post.topic_id==Topic.id", backref='topic', lazy='dynamic')


class Post(Base):
    __tablename__ = 'posts'
    id = Column(Integer, primary_key=True)
    ...
    topic_id = Column(Integer, ForeignKey('topics.id'))


def post_inserted(mapper, conn, post):
    topic = post.topic
    topic.post_count = topic.posts.count()

event.listen(Post, "after_insert", post_inserted)

我想在我的 Pyramid 应用程序中使用 SQLAchemy 事件“after_insert”,以更新主题模型,其中包含属于它的帖子数。但我得到了例外:

Traceback (most recent call last):
  File "/home/user/workspace/myforum/env/lib/python2.6/site-packages/waitress/channel.py", line 329, in service
    task.service()
  File "/home/user/workspace/myforum/env/lib/python2.6/site-packages/waitress/task.py", line 173, in service
    self.execute()
  File "/home/user/workspace/myforum/env/lib/python2.6/site-packages/waitress/task.py", line 380, in execute
    app_iter = self.channel.server.application(env, start_response)
  File "/home/user/workspace/myforum/env/lib/python2.6/site-packages/pyramid/router.py", line 251, in __call__
    response = self.invoke_subrequest(request, use_tweens=True)
  File "/home/user/workspace/myforum/env/lib/python2.6/site-packages/pyramid/router.py", line 227, in invoke_subrequest
    response = handle_request(request)
  File "/home/user/workspace/myforum/env/lib/python2.6/site-packages/pyramid_tm/__init__.py", line 107, in tm_tween
    return response
  File "/home/user/workspace/myforum/env/lib/python2.6/site-packages/transaction/_manager.py", line 116, in __exit__
    self.commit()
  File "/home/user/workspace/myforum/env/lib/python2.6/site-packages/transaction/_manager.py", line 107, in commit
    return self.get().commit()
  File "/home/user/workspace/myforum/env/lib/python2.6/site-packages/transaction/_transaction.py", line 354, in commit
    reraise(t, v, tb)
  File "/home/user/workspace/myforum/env/lib/python2.6/site-packages/transaction/_transaction.py", line 345, in commit
    self._commitResources()
  File "/home/user/workspace/myforum/env/lib/python2.6/site-packages/transaction/_transaction.py", line 493, in _commitResources
    reraise(t, v, tb)
  File "/home/user/workspace/myforum/env/lib/python2.6/site-packages/transaction/_transaction.py", line 465, in _commitResources
    rm.tpc_begin(self)
  File "/home/user/workspace/myforum/env/lib/python2.6/site-packages/zope/sqlalchemy/datamanager.py", line 86, in tpc_begin
    self.session.flush()
  File "/home/user/workspace/myforum/env/lib/python2.6/site-packages/sqlalchemy/orm/session.py", line 1583, in flush
    self._flush(objects)
  File "/home/user/workspace/myforum/env/lib/python2.6/site-packages/sqlalchemy/orm/session.py", line 1654, in _flush
    flush_context.execute()
  File "/home/user/workspace/myforum/env/lib/python2.6/site-packages/sqlalchemy/orm/unitofwork.py", line 331, in execute
    rec.execute(self)
  File "/home/user/workspace/myforum/env/lib/python2.6/site-packages/sqlalchemy/orm/unitofwork.py", line 475, in execute
    uow
  File "/home/user/workspace/myforum/env/lib/python2.6/site-packages/sqlalchemy/orm/persistence.py", line 67, in save_obj
    states_to_insert, states_to_update)
  File "/home/user/workspace/myforum/env/lib/python2.6/site-packages/sqlalchemy/orm/persistence.py", line 702, in _finalize_insert_update_commands
    mapper.dispatch.after_insert(mapper, connection, state)
  File "/home/user/workspace/myforum/env/lib/python2.6/site-packages/sqlalchemy/event.py", line 291, in __call__
    fn(*args, **kw)
  File "/home/user/workspace/myforum/env/lib/python2.6/site-packages/sqlalchemy/orm/events.py", line 360, in wrap
    wrapped_fn(*arg, **kw)
  File "/home/user/workspace/myforum/cube_forum/models.py", line 165, in post_saved
    topic.post_count = topic.posts.count()
  File "/home/user/workspace/myforum/env/lib/python2.6/site-packages/sqlalchemy/orm/dynamic.py", line 249, in count
    sess = self.__session()
  File "/home/user/workspace/myforum/env/lib/python2.6/site-packages/sqlalchemy/orm/dynamic.py", line 219, in __session
    sess.flush()
  File "/home/user/workspace/myforum/env/lib/python2.6/site-packages/sqlalchemy/orm/session.py", line 1577, in flush
    raise sa_exc.InvalidRequestError("Session is already flushing")
InvalidRequestError: Session is already flushing

如何在 Pyramid/SQLalchemy 中正确执行?

编辑:问题实际上是如何在 Pyramid 中使用 SQLAlchemy 的事件。

4

2 回答 2

1

SQLAlchemy 事件“after_insert”不适合此任务。

答案是使用 Pyramid 的自定义事件,如此处所述http://dannynavarro.net/2011/06/12/using-custom-events-in-pyramid/

于 2013-02-10T14:44:03.077 回答
0

我看到数据库级别存在问题 - 无法保证获得有效的帖子计数值。想象一下,如果在多个事务中同时将两个或多个帖子添加到主题 - 除非您在每次添加新帖子时锁定主题表或记录,否则无法确定相关帖子的有效计数。

可能的解决方案:

1) 将方法添加到主题类。总是有效的数字,但它每次都会对数据库执行查询。

class Topic(Base):
    ...
    def posts_count(self):
        return self.posts.count()

2) 将帖子添加到主题并在代码中更新 post_count,而不使用 after_insert 事件。每次更改帖子主题时,您都需要更新 topic.post_count。此外,当多个帖子同时添加到主题时,此方法也无法解决我描述的问题。

def add_post(topic, request):
    post_form = PostForm(request.POST)
    if 'submit' in request.POST and post_form.validate():
        post = Post(body=post_form.body.data)
        post.user = request.user

        topic.posts.append(post)
        topic.post_count = topic.posts.count()

        DBSession.add(post)
        DBSession.add(topic)

        request.session.flash(_('Post was added'))
        transaction.commit()
        raise HTTPFound(location=request.route_url('topic',id=topic.id))
    return {'post_form':post_form}
于 2013-02-08T22:49:40.970 回答