[appengine-java] Re: Transactions on entities in different entity groups ?

2011-09-29 Thread Cyrille Vincey
SERIOUSLY??? (why don't you give any visibility on this key feature, like you did with FTS?) On Sep 28, 10:52 pm, Ikai Lan (Google) ika...@google.com wrote: You currently can't, but we plan on rolling out a feature that will do this in the next few releases. It's currently in trusted tester at

[appengine-java] Re: Storing query results in memcache

2011-09-29 Thread nicanor.babula
Hi Ian, Thanks for sharing your strategy.. I am not sure if I understand exactly how could I use your system to solve my problem. Actually, the memcache concept is working nice solving similar, but simpler situations. I think I explained poorly my situation. Here it is: An application manages

[appengine-java] allow App Engine apps to act as OAuth service providers

2011-09-29 Thread brand´s mill
Would love to add a custom email password ... against my appengine service. To add this i would love to add my own oauth provider. I found this http://ikaisays.com/2011/05/26/setting-up-an-oauth-provider-on-google-app-engine/ . Question: is there an example using java? -- You received

[appengine-java] Re: GAE - Vote counting system

2011-09-29 Thread Peter Dev
Price: - with backends lets say 3 B2 machines = 350USD/Month - UrlFetch Data Sent/Received 0,15USD/GB Limit: - URL Fetch Daily Limit 46,000,000 calls this can be a problem...but I see it is possible to request an increase Write data parallel in DB: Task Queue with rate

Re: [appengine-java] Re: GAE - Vote counting system

2011-09-29 Thread Jeff Schnitzer
It's hard to say here if we're talking about the same thing, but here's how I would do it: * Updates go through to the backend, which stores write deltas in ram (not the total). * Reads read-through memcache into the datastore. * The backend writes deltas to the datastore in batch, updating

Re: [appengine-java] allow App Engine apps to act as OAuth service providers

2011-09-29 Thread David Chandler
There are several Java OAuth client samples referenced here: http://turbomanage.wordpress.com/2011/08/25/using-the-gae-app-identity-api-and-oauth2/ HTH, /dmc On Thu, Sep 29, 2011 at 7:20 AM, brand´s mill brandsm...@googlemail.comwrote: Would love to add a custom email password ... against my

Re: [appengine-java] Re: Transactions on entities in different entity groups ?

2011-09-29 Thread Jeff Schnitzer
A month or so ago Google posted a request for trusted testers for this feature. It helps to read the mailing lists :-) Jeff On Thu, Sep 29, 2011 at 2:05 AM, Cyrille Vincey cvin...@qunb.com wrote: SERIOUSLY??? (why don't you give any visibility on this key feature, like you did with FTS?)

[appengine-java] Quiz

2011-09-29 Thread gk
What is the output of the following method? public boolean whatDoesItDo() { try { if(true) { throw new IllegalStateException(); } return true; } finally { if(true) { return false; } } } Have a

Re: [appengine-java] Quiz

2011-09-29 Thread Stephen Johnson
That's easy. You are not supposed to return a value in the finally block since it overwrites any previous return values and also any exceptions that are thrown. Return statements in a finally block are a big NO-NO. Stephen CortexConnect.com On Thu, Sep 29, 2011 at 3:36 PM, gk

Re: [appengine-java] Quiz

2011-09-29 Thread Stephen Johnson
So the answer is false. Forgot to actually state that. On Thu, Sep 29, 2011 at 3:44 PM, Stephen Johnson onepagewo...@gmail.comwrote: That's easy. You are not supposed to return a value in the finally block since it overwrites any previous return values and also any exceptions that are thrown.

[appengine-java] .A research: how long will your java app instance start up fully?

2011-09-29 Thread Tapir
? -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to google-appengine-java@googlegroups.com. To unsubscribe from this group, send email to google-appengine-java+unsubscr...@googlegroups.com. For

Re: [appengine-java] Google App Engine Internet Crawler

2011-09-29 Thread Rodel Ocampo
Thank you very much for the lead . Being a newbie in appengine makes it harder for me. :D -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to google-appengine-java@googlegroups.com. To

[appengine-java] Re: .A research: how long will your java app instance start up fully?

2011-09-29 Thread gk
~10s -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to google-appengine-java@googlegroups.com. To unsubscribe from this group, send email to google-appengine-java+unsubscr...@googlegroups.com. For

Re: [appengine-java] Quiz

2011-09-29 Thread Prabakaran R
Hi return false ,finally must be excute. On Fri, Sep 30, 2011 at 4:06 AM, gk goran.kar...@googlemail.com wrote: What is the output of the following method? public boolean whatDoesItDo() { try { if(true) { throw new IllegalStateException(); }

[appengine-java] Re: .A research: how long will your java app instance start up fully?

2011-09-29 Thread Tapir
15s On Sep 30, 9:29 am, Tapir tapir@gmail.com wrote: ? -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to google-appengine-java@googlegroups.com. To unsubscribe from this group, send email to