Re: [google-appengine] Re: Channel API from mobile

2011-01-03 Thread
Hi Ikai,

Is there any plan to implement the channel api to other languages
besides javascript?
People like me who use app engine as the game server would quite
appreciate on this.

2010/12/30 Ikai Lan (Google) :
> He's referring to Channel API in the Android browser.
> With Android, you probably want to use the Push APIs:
> http://code.google.com/android/c2dm/
>
> --
> Ikai Lan
> Developer Programs Engineer, Google App Engine
> Blogger: http://googleappengine.blogspot.com
> Reddit: http://www.reddit.com/r/appengine
> Twitter: http://twitter.com/app_engine
>
>
> On Wed, Dec 29, 2010 at 12:51 AM, David  wrote:
>>
>> Thomas,
>> On Android, do you mean you are using the Channel API in the Android
>> web browser?  Or did you create a java client for the channel api?  If
>> the latter, can you share your java client code?  I'm definitely
>> interested in using the Channel API in my Android application (not
>> through javascript in a browser)
>> Thanks,
>> David
>>
>> On Dec 28, 6:46 pm, Thomas Wiradikusuma 
>> wrote:
>> > Hi Ikai,
>> >
>> > I tested on Android and iPhone, Channel API works. As for BlackBerry,
>> > I end up removing Channel API and using manual polling instead.
>> >
>> > On Dec 29, 2:45 am, "Ikai Lan (Google)" 
>> > wrote:
>> >
>> > > I'm curious if anyone with a BlackBerry can make this work. The
>> > > Channel API
>> > > uses whatever technology is available for browser push when possible,
>> > > and if
>> > > not, long-polling. It's possible the BlackBerry's browser simply
>> > > doesn't
>> > > support this technology.
>> >
>> > > I'd be surprised if iPhone/Android devices *couldn't* handle this,
>> > > though
>> > > with limitations - I have no idea what the behavior would be like if
>> > > the
>> > > browser were backgrounded.
>> >
>> >
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Google App Engine" group.
>> To post to this group, send email to google-appeng...@googlegroups.com.
>> To unsubscribe from this group, send email to
>> google-appengine+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/google-appengine?hl=en.
>>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To post to this group, send email to google-appeng...@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>



-- 
Best regards,
Yuhui

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] What's the syntax of the cron job for "the first day of every month"?

2011-03-22 Thread
Hey, I want to generate a monthly report on the first day of the month, any
idea on doing this with cron jobs?

-- 
Best regards,
Yuhui

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] What's the syntax of the cron job for "the first day of every month"?

2011-03-24 Thread
Thanks, Bob,
It seems runs well

2011/3/22 Robert Kluin 

> Hi,
>  Have you tried:
>
>cron:
>- description: monthly summary job
>  url: /tasks/summary/monthly
>  schedule: 1 of month 00:00
>
>
>
>
> Robert
>
>
>
>
>
>
>
> On Tue, Mar 22, 2011 at 04:12, 王宇辉  wrote:
> > Hey, I want to generate a monthly report on the first day of the month,
> any
> > idea on doing this with cron jobs?
> >
> > --
> > Best regards,
> > Yuhui
> >
> >
> >
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Google App Engine" group.
> > To post to this group, send email to google-appengine@googlegroups.com.
> > To unsubscribe from this group, send email to
> > google-appengine+unsubscr...@googlegroups.com.
> > For more options, visit this group at
> > http://groups.google.com/group/google-appengine?hl=en.
> >
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To post to this group, send email to google-appengine@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>
>


-- 
Best regards,
Yuhui

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Re: What's the syntax of the cron job for "the first day of every month"?

2011-03-25 Thread
At least it can be parsed by google and uploaded to the backend :-)

2011/3/25 nickmilon 

> How do you know ?
> I guess you have to wait till the end of the month to see if it really
> works.
> just joking ;-)
>
>
> On Mar 24, 9:26 am, 王宇辉  wrote:
> > Thanks, Bob,
> > It seems runs well
> >
> > 2011/3/22 Robert Kluin 
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > > Hi,
> > >  Have you tried:
> >
> > >cron:
> > >- description: monthly summary job
> > >  url: /tasks/summary/monthly
> > >  schedule: 1 of month 00:00
> >
> > > Robert
> >
> > > On Tue, Mar 22, 2011 at 04:12, 王宇辉  wrote:
> > > > Hey, I want to generate a monthly report on the first day of the
> month,
> > > any
> > > > idea on doing this with cron jobs?
> >
> > > > --
> > > > Best regards,
> > > > Yuhui
> >
> > > > --
> > > > You received this message because you are subscribed to the Google
> Groups
> > > > "Google App Engine" group.
> > > > To post to this group, send email to
> google-appengine@googlegroups.com.
> > > > To unsubscribe from this group, send email to
> > > > google-appengine+unsubscr...@googlegroups.com.
> > > > For more options, visit this group at
> > > >http://groups.google.com/group/google-appengine?hl=en.
> >
> > > --
> > > You received this message because you are subscribed to the Google
> Groups
> > > "Google App Engine" group.
> > > To post to this group, send email to google-appengine@googlegroups.com
> .
> > > To unsubscribe from this group, send email to
> > > google-appengine+unsubscr...@googlegroups.com.
> > > For more options, visit this group at
> > >http://groups.google.com/group/google-appengine?hl=en.
> >
> > --
> > Best regards,
> > Yuhui
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To post to this group, send email to google-appengine@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>
>


-- 
Best regards,
Yuhui

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Our server is down!!!

2011-03-27 Thread
Recently we are developing a game, and use GAE/J as the backend. Yesterday
it's available on App Store, and many many players love it, we are so glad
about this. But it didn't remain long. Today our server has used up its
memcache quota and so all data will be fetched from datastore, then the data
store entities fetch quota was used up. Now it's down. Last about 5 hours,
we can do nothing except
waiting for the billing circle reset time.

It's painful, really really. I doubt GAE can be used as the backend for a
game. Currently we are really disappointed with GAE. It has too many limited
quota, and we can do NOTHING about it.
I've wrote a letter to the support team, but maybe they are still in weekend
holiday.
Yes, it's just a preview version, we can not hope it can do more, perhaps
it's time we have to transfer our server to other cloud services.


-- 
Best regards,
Yuhui

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Our server is down!!!

2011-03-28 Thread
We've enabled the billing and the quota can be paid is not used up. But App
Engine itself has some limited quotas, like Data sent to Memcache, Datastore
API calls, that's not billable.


2011/3/28 Simon Knott 

> Why can't you up your quotas through the billing mechanism?  Or are you
> saying you maxed out the quotas even with billing enabled?
>



-- 
Best regards,
Yuhui

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Our server is down!!!

2011-03-28 Thread
Thanks, Simon,
I've sent mails to them. It's really painful when you see your services
interrupted but can not do anything.


2011/3/28 Simon Knott 

> Have you tried submitting a billing request for upping these quotas?  I've
> seen quite a lot of people ask for specific non-billed quotas to be raised
> before and the Google team have been able to raise them.
>
> I think the form to use for a formal request is
> http://code.google.com/support/bin/request.py?contact_type=AppEngineQuotaRequest,
> although you may get a faster response through the billing request form at
> http://code.google.com/support/bin/request.py?contact_type=AppEngineBillingSupport
>



-- 
Best regards,
Yuhui

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.