SQS has to be polled so you'd have to trigger the message pulling
event somehow, but surely externally, as GAE doesn't allow for
background jobs. It'd be a lot more interesting to be able to push
messages to a GAE application :-)
On Apr 10, 5:39 am, Glenn Rempe <
glenn.re...@gmail.com> wrote:
> What about linking out to Amazon SQS (Simple Queue Service)?
> Thoughts?
>
> On Apr 8, 6:54 am, Celso Pinto <
cpi...@yimports.com> wrote:
>
> > Yeah, I'd sayXMPPcould be used for asynchronous reliable messaging
> > if enough attention is paid to setting it up. It can be configured to
> > support offline storage (ie. storing a message sent to an offline user
> > that will be picked up when the user goes online) and it also supports
> > publish-subscribe alongside peer-to-peer messaging.
>
> > After that we'd just need to be able to deploy packages that act as
> > message consumers.
>
> > On Apr 8, 11:49 am, "Brett Morgan" <
brett.mor...@gmail.com> wrote:
>
> > > I'm thinking of putting in a request on the bug tracker about this
> > > style of functionality. I want to develop long polling software for
> > > group communication style applications.
>
> > > The problem is that the gfs back end of google appengine isn't the
> > > best for this sort of thing.
>
> > > One option is to ask for some sort of long poll handling that gets
> > > released when an index file is updated. This would mean that we could
> > > "subscribe" to a query, and have the query rendered when ever the
> > > backing data behind the query changes.
>
> > > The other option would be to push forxmppintegration and have long