[google-appengine] Re: Task Queues

2009-08-16 Thread Philippe
http://code.google.com/p/googleappengine/issues/list you can star some issues on taskQueue. it's still in the lab of appengine team. On Aug 17, 12:21 am, Sebastian Aviña wrote: > Hi, I'm running some task queues on my app hola-dgo, right now I  have > exceded the Total Daily Quota, and I still

[google-appengine] Re: All Read Please: Geographical Request Latency

2009-08-16 Thread gjs
Home Ajax request latency of 425ms Page One Ajax request latency of 439ms Page Two Ajax request latency of 420ms More Ajax request latency of 836ms After trying multiple times most responses are around 380~420ms >From Australia ( with chrome on windoze xp ) Regards On Aug 17, 9:02 am, GregF

[google-appengine] Python GAE version of Rails' validates_uniqueness_of

2009-08-16 Thread Daniel Rhoden
I discovered that my 'Account' model happily created multiple instances of user 't...@example.com' without complaint during testing. (I know, fix my code). Short question: What's the lightest way of ensuring value uniqueness between entity values? I've read up on the Property class constru

[google-appengine] Re: urlfetch don't work with non ASCII characters in PARAMETERS

2009-08-16 Thread Tim Hoffman
Hi Have a look at things like rfc2141,rfc2396, I am not sure you can directly include such characters in a urn legally. I am quite possibly wrong but couldn't find any rfc's cover extended char sets in a url/urn. The problem is that there isn't a scheme for telling the url to change chars sets f

[google-appengine] Re: All Read Please: Geographical Request Latency

2009-08-16 Thread GregF
Queenstown New Zealand: 440-490ms. --~--~-~--~~~---~--~~ 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, sen

[google-appengine] Task Queues

2009-08-16 Thread Sebastian Aviña
Hi, I'm running some task queues on my app hola-dgo, right now I have exceded the Total Daily Quota, and I still have around 2000+ tasks in queue... I don't know which tasks are queue, I can't see them, neither I can't delete, or flush the queue... What can I do? It's very hard to debug task que

[google-appengine] Re: Massive datastore batch put, how to?

2009-08-16 Thread Stakka
I implemented a rough version of my solution, and it seems to work up to ~15k entities. Above that I hit the undocumented transaction write limit you mention when trying to commit 36408 entities serialized into 24 blobs of 60 bytes: java.lang.IllegalArgumentException: datastore transaction or

[google-appengine] Re: Transactionally updating multiple entities over 1MB

2009-08-16 Thread Stakka
Wierd, I just hit a limit on the size of a transaction when commiting: "java.lang.IllegalArgumentException: datastore transaction or write too big." All (23) entities in the transaction where in the same entity group, not using batch put and ~990k in size. On 23 Juli, 12:30, "Nick Johnson (Goo

[google-appengine] Re: urlfetch don't work with non ASCII characters in PARAMETERS

2009-08-16 Thread Sylvain
can you test this ? import urllib q = urllib.quote(q.encode('utf8')) or just q = urllib.quote(q) Regards On Aug 16, 5:35 pm, Edmar wrote: > Every time I try to fetch a result using GAE urlfetch and one of the > parameters have an non ASCII character I get an error > > I want to fetch this url

[google-appengine] urlfetch don't work with non ASCII characters in PARAMETERS

2009-08-16 Thread Edmar
Every time I try to fetch a result using GAE urlfetch and one of the parameters have an non ASCII character I get an error I want to fetch this url : http://ajax.googleapis.com/ajax/services/search/web?v=1.0&rsz=large&q=ação my problem is with the q parameter if I put other words as a query it

[google-appengine] Re: Group search problem

2009-08-16 Thread Juraj Vitko
This is real and serious issue. I've just experienced it myself when searching for "getObjectsById" in the appengine-java and only got one result. Then I searched through the main google.com search, and got many results for the same group. When I saw this thread first time, I tried the query you

[google-appengine] Re: google-app-engine-django

2009-08-16 Thread Holger
Appengine has got two modes of operation. High traffic applications are served directly out of the cache within a second for example. For low traffic applications first the uploded code has to be prepared (unzipped for example) and put into the cache before it can be served. Thus low traffic ap