vote up 0 vote down star

It seems like threading.local is more straightforward and more robust.

flag

62% accept rate

2 Answers

vote up 1 vote down check

StackedObjectProxy uses a threading.local underneath it. Pylons doesn't use plain threading.locals for 2 reasons:

1) it'd be a more intrusive API than a proxy. E.g. request().POST.get('file') vs request.POST.get('file')

2) StackedObjectProxys are not only thread safe, but also "request safe" -- meaning it's safe for a Pylons application to be embedded in another and reference the same proxy objects. The need for this kind of safety is rare, but is certainly a possibility with how easy it is for WSGI apps to call other WSGI apps + the use of global objects

See the paste.registry docs for more information

link|flag
vote up 1 vote down

Because threading.local is new in Python 2.4. The StackedObjectProxy uses threading.local if it can.

link|flag
Python 2.4 came out in 2004 so I'm not sure "new" is the right word. – Dave Webb Nov 6 at 11:27
I'm just kind of quoting docs.python.org/library/… ;-) – THC4k Nov 6 at 12:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.