[google-appengine] Re: implementing a chat system (push functionality?)

2009-04-03 Thread Xavier Mathews
There Is A Twitter App Being Created For Integration With Google...Already There Is A Google "Sync" To Twitter Widget! "Sent From Sony Slim-Line PSP" Xavier A. Mathews Web-Developer On Fri, Apr 3, 2009 at 11:33 AM, Olemis Lang wrote: > > On Fri, Apr 3, 2009 at 10:41 AM, ryandscott

[google-appengine] Re: implementing a chat system (push functionality?)

2009-04-03 Thread Olemis Lang
On Fri, Apr 3, 2009 at 10:41 AM, ryandscott wrote: > > I considered the GTalk gadget, but that won't really facilitate group > chatting within the website. It's a great way to make available chat > to anyone visiting the page, but you'd still need people to share > their email in order to chat wi

[google-appengine] Re: implementing a chat system (push functionality?)

2009-04-03 Thread ryandscott
I considered the GTalk gadget, but that won't really facilitate group chatting within the website. It's a great way to make available chat to anyone visiting the page, but you'd still need people to share their email in order to chat with each other. One solution, however, that is promising is mee

[google-appengine] Re: implementing a chat system (push functionality?)

2009-04-02 Thread Olemis Lang
>> Take care about this, since this option, depending on your application >> and update intervals, may exhaust your free quotas or your bugdget >> very quickly. For example, supose you have 40 chat rooms per day with >> 40 users each one, with a lifespan of 2 hours per chat, with clients >> pollin

[google-appengine] Re: implementing a chat system (push functionality?)

2009-04-02 Thread Bartosz Kołodziej
Because there is time limit per request you can not implement better chat system. If there was no time limit per request you could try server polling, (make request, waiting for data, when data is avaible get it and then make next request and wait) or server push using chunked encoding. On Apr 2,

[google-appengine] Re: implementing a chat system (push functionality?)

2009-04-02 Thread ryandscott
That is as I suspected. And yeah... that's a lot of cpu hours! A slick solution would be a Google Chat integration where you could limit it to your domain like they do with Google Apps for your Domain, but without the cost per user Or, I'd even be happy with being able to create my own jaiku s

[google-appengine] Re: implementing a chat system (push functionality?)

2009-04-02 Thread niklas
you can test ytalk http://test.movq.net/ytalk/ or look at the video http://www.youtube.com/watch?v=87BJYaF_cK4 and download the source http://code.google.com/p/gae-services-examples/source/browse best regards Niklas On Apr 2, 6:13 am, ryandscott wrote: > I'm wondering what the best way to implem

[google-appengine] Re: implementing a chat system (push functionality?)

2009-04-02 Thread José Oliver Segura
On Thu, Apr 2, 2009 at 6:13 AM, ryandscott wrote: > > I'm wondering what the best way to implement a chat system would be. > Currently, I have a javascript timer that goes off every x seconds to > query the database and return the list of chats. I keep my list to a > certain number of chats, but