[google-appengine] question on behavior of namespaced task queues

2010-09-10 Thread Shimon Rura
I've been learning about the namespacing system and am wondering about its behavior with task queues. I'm not sure about the effect of enqueuing a task under a particular namespace. The docs state that when the task request runs, it will use the same namespace for queries to the datastore,

Re: [google-appengine] question on behavior of namespaced task queues

2010-09-10 Thread Ross M Karchner
I'm *pretty sure* it just means that the task inherits the namespace (for the purposes of data store and memcache access) from the request that inserted it into the queue-- it won't create parallel queues. On Fri, Sep 10, 2010 at 7:14 PM, Shimon Rura shimonr...@gmail.com wrote: I've been

Re: [google-appengine] question on behavior of namespaced task queues

2010-09-10 Thread Robert Kluin
You're right. The last time I checked the code, namespaces do not affect task queues beyond setting the namespace. Robert On Fri, Sep 10, 2010 at 20:27, Ross M Karchner rosskarch...@gmail.com wrote: I'm *pretty sure* it just means that the task inherits the namespace (for the purposes of