Re: [google-appengine] Deployment

2012-06-06 Thread Leandro Rezende
i have noticed that if i change only HTML files, the deployment is faster, but, if i change any line in a .JAVA, the deploy becomes slower 2012/6/6 swapnil khamkar swap...@gmail.com do the jstl like c: or sec: affect the deployment time? do you no which factors have an imp-act on the

Re: [google-appengine] Deployment

2012-06-05 Thread Leandro Rezende
mine take about 20 minutes, and my app is really small.. =( 2012/6/5 Wilson MacGyver wmacgy...@gmail.com you mean it takes you 3 to 3.5 hours to upload the app? That seems pretty unbelievable. On Tue, Jun 5, 2012 at 4:25 AM, swapnil khamkar swap...@gmail.com wrote: What is the approximate

Re: [google-appengine] Re: How to set Task Queue order?

2012-04-05 Thread Leandro Rezende
stackoverflow. http://stackoverflow.com/questions/9982369/is-there-a-way-to-assure-fifo-first-in-first-out-behavior-with-task-queues-on Please star it ;) On Apr 4, 10:47 am, Leandro Rezende leandro.reze...@gmail.com wrote: Nicholas Verne, i will try the max_concurrent_requests , what about

Re: [google-appengine] Re: How to set Task Queue order?

2012-04-04 Thread Leandro Rezende
PM, Leandro Rezende leandro.reze...@gmail.com wrote: im adding 10 taskes at the Queue, but i would like to a Task wait the previous task finish before it run.. Example: - Added 10 tasks. - Task 1 Run - Task 1 Finish - Task 2 Begin - Task 2 Finish

[google-appengine] How to set Task Queue order?

2012-04-03 Thread Leandro Rezende
im adding 10 taskes at the Queue, but i would like to a Task wait the previous task finish before it run.. Example: - Added 10 tasks. - Task 1 Run - Task 1 Finish - Task 2 Begin - Task 2 Finish - Task 3 Begin - .. is it possible? Leandro -- You received this message because you are

Re: [google-appengine] realy upset

2012-03-20 Thread Leandro Rezende
Sana, i had the same doubt that u are having.. i found the solution at http://ikaisays.com/2010/09/08/gwt-blobstore-the-new-high-performance-image-serving-api-and-cute-dogs-on-office-chairs/ i hope it helps u too 2012/3/20 Barry Hunter barrybhun...@gmail.com I suspect you first need to

[google-appengine] GAE + Adsense is it possible?Dynamic pages only..

2012-02-27 Thread Leandro Rezende
Is it possible to apply in Google Adsense with a Dynamic only pages on GAE? -- 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

Re: [google-appengine] GAE + Adsense is it possible?Dynamic pages only..

2012-02-27 Thread Leandro Rezende
://www.youtube.com/blackwateropsdotcom BlackWater Ops http://www.blackwaterops.com/ Cloud On A String Mastermind Group http://www.cloudonastring.com/* * ** ** ** ** *From:* google-appengine@googlegroups.com [mailto: google-appengine@googlegroups.com] *On Behalf Of *Leandro

Re: [google-appengine] GAE + Adsense is it possible?Dynamic pages only..

2012-02-27 Thread Leandro Rezende
combinations of search engine index gwt ajax etc. The GWT group deals with this a lot. Jeff On Mon, Feb 27, 2012 at 12:43 PM, Leandro Rezende leandro.reze...@gmail.com wrote: hmmm, i guess Adsense robot doesnt like me. =( im always being rejected .. insufficient content Brandon, I have only

Re: [google-appengine] No matching index found

2012-02-27 Thread Leandro Rezende
development or production server? 2012/2/27 ramesh chiluverirame...@gmail.com Hi All, I am trying to fetch the data by applying the sort order(Ascending) on the property. Ex: Query query = new Query(DBNAME); query .addFilter(Property,FilterOperator.GREATER_THAN_OR_EQUAL,

Re: [google-appengine] Re: Google App Engine community support is moving to Stack Overflow

2012-02-07 Thread Leandro Rezende
-1 I loved waking up every morning and check the emails from this group, i always read almost everything, not even knowing what it is about, only to learn more about GAE, future problens i will have and future solutions . As a beginner, i would lose much if the group ends. =( 2012/2/7 Johan

Re: [google-appengine] Running Out of Database Read Operations

2012-02-06 Thread Leandro Rezende
Hi David, u must Denormalize as much as u can, and use Memcache. I was with a problem like yours, i had to review all my code, to Denormalize, but it didnt save enought Data Read so, i had to implement memcache. i posted a simple code that u can replace your GetObjectByID for a function that

Re: [google-appengine] Saving Datastore Read

2012-02-01 Thread Leandro Rezende
stuff is very often displayed, use memcache to store their details. Robert On Tue, Jan 31, 2012 at 07:51, Leandro Rezende leandro.reze...@gmail.com wrote: if i have 2 Tables, Table Player , (Fields - PlayerKey, PlayerName, PlayerUrlPhoto) Table PlayerGames, (Fields

Re: [google-appengine] Saving Datastore Read

2012-02-01 Thread Leandro Rezende
: google-appengine@googlegroups.com] *On Behalf Of *Leandro Rezende *Sent:* Wednesday, February 01, 2012 3:28 AM *To:* google-appengine@googlegroups.com *Subject:* Re: [google-appengine] Saving Datastore Read ** ** Thx for the answer Robert, i was thinking about Memcache too, but i never

Re: [google-appengine] Saving Datastore Read

2012-02-01 Thread Leandro Rezende
Of *Leandro Rezende *Sent:* Wednesday, February 01, 2012 4:38 AM *To:* google-appengine@googlegroups.com *Subject:* Re: [google-appengine] Saving Datastore Read ** ** Thanks Brandon, So before i GetObjectbyId(), i will search at Memcache, if the record isnt there, i will GetoBjectById

Re: [google-appengine] Saving Datastore Read

2012-02-01 Thread Leandro Rezende
(CacheException e) { PersistenceManager pm = PMF.get().getPersistenceManager(); returntemp=pm.getObjectById(class.getClass(),key); } return returntemp; } Can this be done? is there a quota to MemCache API call? and thx again 2012/2/1 Leandro Rezende leandro.reze...@gmail.com thx

[google-appengine] Saving Datastore Read

2012-01-31 Thread Leandro Rezende
if i have 2 Tables, Table Player , (Fields - PlayerKey, PlayerName, PlayerUrlPhoto) Table PlayerGames, (Fields - PlayerGameKey, PlayerKey, GameDate) if i wanna list all games, i will create a query in PlayerGames, and to show the Players info, i will have to GetObjectbyID to read PlayerName and

[google-appengine] Re: Saving Datastore Read

2012-01-31 Thread Leandro Rezende
Any idea to help me? 2012/1/31 Leandro Rezende leandro.reze...@gmail.com if i have 2 Tables, Table Player , (Fields - PlayerKey, PlayerName, PlayerUrlPhoto) Table PlayerGames, (Fields - PlayerGameKey, PlayerKey, GameDate) if i wanna list all games, i will create a query in PlayerGames

[google-appengine] GAE and Google Cloud SQL... Which quota will be consumed?

2012-01-10 Thread Leandro Rezende
Which quota will be used when Read/Write on Google Cloud SQL? The same as from DataStore Read/Write Operations? -- 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

Re: [google-appengine] Re: vijayp on migration of partychat from GAE to EC2/GAE-hybrid; from $20/day expense to $1/day

2012-01-06 Thread Leandro Rezende
run as u can =P 2012/1/5 Shane Elbo shane.e...@new5s.com I've just started to learn about GAE. Should I go for this strategy instead of full rely on GAE? -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the

Re: [google-appengine] Problem sending email from an apps account to a list

2012-01-03 Thread Leandro Rezende
welcome to the club. i don't know why, the owner of Gmail, cannot make GAE mailling service work as it should be Mysteries from the Cloud! 2012/1/3 Ice13ill andrei.fifi...@gmail.com Hello, I'm trying to send email from an apps account to an email representing a list, but the mail is not

Re: [google-appengine] New User Problem

2011-12-30 Thread Leandro Rezende
create a new Application ID? 2011/12/30 Joey joey.bern...@gmail.com I'm working through the first steps of setting up my application. And the VERY first thing I did was misspell the url. How do I fix this? -- You received this message because you are subscribed to the Google Groups Google

Re: [google-appengine] Re: Cautionary Tale: Abusive price for data migration and deletion

2011-12-28 Thread Leandro Rezende
u pay to write, pay to keep it stored... delete should be free. 2011/12/28 Brandon Wirtz drak...@digerat.com Yes, While the primary app I talk about is edge Cache, that’s because that’s the thing that people can most benefit from that people don’t seem to be using. ** ** As

Re: [google-appengine] Re: problem with PersistenceManager singleton on sdk 1.6.0 and 1.6.1

2011-12-22 Thread Leandro Rezende
probably u will have to delete the old JAR files from your project... i dont remember the full path at moment, but i guess its \web\src\lib 2011/12/22 aegis dylan.dr...@gmail.com According to datanucleus on stackoverflow, It means some GAE internal API seems different (not JDO, but their JDO

Re: [google-appengine] Re: Effective memcache - Caching frequently fetched entities

2011-12-19 Thread Leandro Rezende
but executing those things described in it practice is quite simple. - Thank you Best regards, Sami Lehtinen http://www.sami-lehtinen.net/ On Dec 16, 1:41 pm, Leandro Rezende leandro.reze...@gmail.com wrote: so i will try to Bing it! =) 2011/12/15 Leandro Rezende leandro.reze

Re: [google-appengine] Effective memcache - Caching frequently fetched entities

2011-12-16 Thread Leandro Rezende
so i will try to Bing it! =) 2011/12/15 Leandro Rezende leandro.reze...@gmail.com any tip? 2011/12/14 Leandro Rezende leandro.reze...@gmail.com no i never used, im trying to learn about it to reduce the Datastore reading operation from my application. my application is small

Re: [google-appengine] Effective memcache - Caching frequently fetched entities

2011-12-15 Thread Leandro Rezende
any tip? 2011/12/14 Leandro Rezende leandro.reze...@gmail.com no i never used, im trying to learn about it to reduce the Datastore reading operation from my application. my application is small and its consuming too much quota. probably i will need to denormalize more, but using cache i

Re: [google-appengine] Re: App Engine 1.6.1 Released!

2011-12-14 Thread Leandro Rezende
Does the emailling problem have been resolved? 2011/12/14 Gopal Patel patelgo...@gmail.com http://code.google.com/p/googleappengine/issues/detail?id=6550 star this issue. which allows options available in online admin console to be incorporated in app config file. -- and awesome release.

[google-appengine] Effective memcache - Caching frequently fetched entities

2011-12-14 Thread Leandro Rezende
Hi, im planning to implement memcache on my application, i found this link http://code.google.com/intl/en/appengine/articles/scaling/memcache.html#related but there arent any sample how to Cache frequently fetched entities i have googled it but didnt found any sample or source to learn how to

Re: [google-appengine] Effective memcache - Caching frequently fetched entities

2011-12-14 Thread Leandro Rezende
/objectify-appengine/wiki/MemcacheStandalone I don't recommend trying to roll your own. It's actually quite tricky to get right without opening yourself up to synchronization issues under contention. Jeff On Wed, Dec 14, 2011 at 2:47 PM, Leandro Rezende leandro.reze...@gmail.com wrote: Hi, im

Re: [google-appengine] Effective memcache - Caching frequently fetched entities

2011-12-14 Thread Leandro Rezende
...@google.com Which part do you need help on? Have you used caching before in the past? -- Ikai Lan Developer Programs Engineer, Google App Engine plus.ikailan.com | twitter.com/ikai On Wed, Dec 14, 2011 at 12:36 PM, Leandro Rezende leandro.reze...@gmail.com wrote: thx Jeff, im using

Re: [google-appengine] Status Update On Sucking On

2011-12-03 Thread Leandro Rezende
i just did it now =) 2011/12/3 Brandon Wirtz drak...@digerat.com Links in this Email are NSFW ** ** Since I only created http://Suckingon.Appspot.com To serve as a testing ground, I thought I would share some info about its status since going live. ** ** Yesterday it got its

[google-appengine] What is the better way to deal with static images/icons? Blobstore or ?

2011-11-29 Thread Leandro Rezende
Deploying the images with my application or use Blobstore? -- 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

Re: [google-appengine] Re: What is the better way to deal with static images/icons? Blobstore or ?

2011-11-29 Thread Leandro Rezende
Thx Max =) when we request an image from Blobstore, calling from its url like ( http://lh6.ggpht.com/TW2oeYogkQCoP0RpjnjTW05CaXyl1wjTAv968c_8qGYOqIuRk2dvs9Uq8dMuYXpxNquKSCwL0AWOwjkMQ6IzyUv-DJ79=s280) does it consume Data Read Operation quota? 2011/11/29 Max thebb...@gmail.com If they are all

Re: [google-appengine] Why is the Email Service so unreliable

2011-11-20 Thread Leandro Rezende
i have the same problem. i just give up looking for a solution. i hope this problem does not happen when i change my application to the billling status. 2011/11/20 Jeff Gager jeffga...@gmail.com I have written an app that sends email notifications to it's users under some circumstances.

Re: [google-appengine] Re: I have to leave App Engine platform, feeling really bad and sad

2011-11-03 Thread Leandro Rezende
Thomas i totally agree with u... im still learning to denormalize =( ... im missing too much the true SQL commands... inner joins, groups... 2011/11/4 Thomas Wiradikusuma wiradikus...@gmail.com Typical startup flow is like this: 1. build an app with the most rapid way (forget about best coding

Re: [google-appengine] Re: Mail API stops sending email from one admin address, still sends from others

2011-10-24 Thread Leandro Rezende
I should be sad because of this bug, but I'm happy to know that I am not the only one with the problem 2011/10/24 pdknsk pdk...@googlemail.com I'm noticing this as well since today. This is not good! -- You received this message because you are subscribed to the Google Groups Google App

Re: [google-appengine] Re: Mail API stops sending email from one admin address, still sends from others

2011-10-23 Thread Leandro Rezende
, Leandro Rezende leandro.reze...@gmail.com wrote: I have the same problem, but in the same google account in different applications. i dont know what to do. when the problem begin to happend, i have to create a new google application, copy all the data from the old datastore

Re: [google-appengine] Re: Send Email on GAE

2011-10-22 Thread Leandro Rezende
Both application are on same google account, same admin, same deployed code. 2011/10/22 Greg g.fawc...@gmail.com Make sure SMTP_AUTH_USER is actually an admin for the non-working account. Cheers! Greg. -- You received this message because you are subscribed to the Google Groups Google

[google-appengine] Send Email on GAE

2011-10-21 Thread Leandro Rezende
I have Two applications with the same Code, the same onwer in the same google account. One of them the emails are sent, in the other it fails and i receive this exception msg MailService IO failed (java.io.IOException: Internal error) this is the code String SMTP_AUTH_USER =x...@gmail.com;

Re: [google-appengine] Mail API stops sending email from one admin address, still sends from others

2011-10-21 Thread Leandro Rezende
I have the same problem, but in the same google account in different applications. i dont know what to do. when the problem begin to happend, i have to create a new google application, copy all the data from the old datastore to it, and deploy the application again. So at the new application, it

Re: [google-appengine] Send Email on GAE

2011-10-21 Thread Leandro Rezende
, at 05:23, Leandro Rezende leandro.reze...@gmail.com wrote: I have Two applications with the same Code, the same onwer in the same google account. One of them the emails are sent, in the other it fails and i receive this exception msg MailService IO failed (java.io.IOException: Internal

Re: [google-appengine] Send Email on GAE

2011-10-21 Thread Leandro Rezende
Recipients Emailed [image: 0%] 0%0 of 2,000 this is the quota status... so its not the problem... 2011/10/21 Martin Waller nettrekk...@gmail.com In that case I'd wait until your quota get reset and try them both then. Martin Sent from my iPhone On 21 Oct 2011, at 18:35, Leandro Rezende

Re: [google-appengine] Suddenly e-mails sent by my app are not delivered

2011-10-21 Thread Leandro Rezende
i have this same problem. try to create another application (with another name) and deploy it, see if it work.. this is what i did. but i guess the problem will occur again, so i will have do create another one... i hope they fix this bug 2011/10/21 PK p...@gae123.com I am not sure where

Re: [google-appengine] Suddenly e-mails sent by my app are not delivered

2011-10-21 Thread Leandro Rezende
no no, i can wait days, they dont go... i recive this exception msg - MailService IO failed (java.io.IOException: Internal error) 2011/10/21 Rori Stumpf r...@simplesmartads.com I've seen some delays in the last hour... maybe the emails will go through. -- You received this message because