Opened 13 years ago
Last modified 12 years ago
#369 closed defect
Thread locally scoped gettext — at Version 2
Reported by: | Christopher Allan Webber | Owned by: | |
---|---|---|---|
Priority: | trivial | Milestone: | 0.3.1 |
Component: | programming | Keywords: | bitesized |
Cc: | Parent Tickets: |
Description (last modified by )
Currently mediagoblin is not threadsafe, but really the only reason for this is mg\_globals.gettext which is set at the start of every request. So if there are two threads running in parallel these might get clobbered. However python has some thread-local scoping: `http://docs.python.org/library/threading.html#threading.local <http://docs.python.org/library/threading.html#threading.local>`_ We could probably use that. SQLAlchemy has some thread-scoped session, so theoretically it uses this, or we could look at what it does use: `http://www.sqlalchemy.org/docs/orm/session.html#sqlalchemy.orm.scoped\_session <http://www.sqlalchemy.org/docs/orm/session.html#sqlalchemy.orm.scoped_session>`_ Not super high priority as preforking does work fine-ish, but would be very nice to have.
Change History (2)
comment:1 by , 13 years ago
comment:2 by , 13 years ago
Description: | modified (diff) |
---|---|
Milestone: | → 0.3.1 |
Marking for 0.3.1... would really like to see this happen and get rolled in.
Note:
See TracTickets
for help on using tickets.
The original url for this bug was http://bugs.foocorp.net/issues/727 .