If we here to integrate a queue functionality in web2py what features would you consider most valuable?
I can three different applications: 1) a message queue (one app sends a message, another one receives it) 2) a task queue (an app can submit a task to be executed later): task is executed by a remote process (or cloud) 3) a task queue: task is executed by the app itself (in a separate thread) but triggered by a queue callback. There is some overlap but they are subject to different optimizations. 2) could be a compatibility layer on top of google's task queue.

