[google-appengine] Re: Every day around 9.10 AM Brussels time, huge drop in GAE performances

2013-03-10 Thread Tony Lock
I too am having the same issues. At approximately 4:00pm West Australian time, the application starts to misbehave. I am starting to see latencies around the 70,000 ms mark, and lots of deadline exceeded errors. Most of these are at simple page load steps, not even doing real processing. The ap

[google-appengine] Re: geopt query?

2009-03-23 Thread lock
You can do equality type checks, but that's about it :-( . A quick search of this group for geohash should point you in the right direction though. On Mar 24, 10:41 am, pedepy wrote: > I just watched that talk about geo data on youtube (i think it was > from google IO?)... and it made me really

[google-appengine] Re: how to config gwt to work in app engine effective and productive

2009-03-17 Thread lock
I'm a big GWT fan, never done much with javascript and don't really want to! It's just a personal preference, not wanting to start another java vs javascript thread ;-) . Sounds like your coming from a java desktop background, there's a bit to learn, but it's pretty straight forward. Tim's righ

[google-appengine] Re: Twitter - rate limit exceeded

2009-03-16 Thread lock
; > Note the URL doesn't need the HTTP:// part in front of it. > > $url = "myurl.appsot.com/somejob"; > $ch = curl_init($url); > curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); > curl_setopt($ch, CURLOPT_TIMEOUT, 2); > $curl_scraped_page = curl_exec($ch); > curl_close(

[google-appengine] Re: Twitter - rate limit exceeded

2009-03-14 Thread lock
the client (via javascript) to pull data from twitter and send it on to app engine for processing/storage. Not real pretty. Thanks, lock On Mar 15, 9:16 am, Tim Bull wrote: > Interesting, > > I have a Twitter app (http://twendly.appspot.com) but I don't seem to be > having thi

[google-appengine] Re: Twitter - rate limit exceeded

2009-03-13 Thread lock
ng twitter to see if they could build more 'smarts' into their rate limiting? Would be really interested to see if you end up resolving this issue, thanks for the heads up. Sorry I can't help. Cheers, lock On Mar 12, 10:43 pm, richyrich wrote: > Hi there, > > I have bee

[google-appengine] Re: handling classes across multiple .py files

2008-12-11 Thread lock
Hmmm, the message "KindError: Kind 'Board' is not a subclass of kind 'Board' " Makes me think that maybe you are defining two classes named 'Board' in each of your .py files. If this is the case, it's not what you want. I'd agree with djidjadji, it would be good practice to separate your Mod

[google-appengine] Re: Seemingly undoable to build a simple app

2008-12-07 Thread lock
Hmmm, your right. You could try culling some of the token words, the simple ones like 'and', 'a', 'or' to limit the number of puts, but that will only go so far. I don't think sorting and checking for intersection will cost you too much. Its the number of results returned from the queries that

[google-appengine] Re: Seemingly undoable to build a simple app

2008-12-07 Thread lock
I'm pretty new to app engine so there may be some gotcha's in what I say, but I think my logic is ok. It seems you have a pretty simple table with a few fields (name, brand, description) and you want to be able to search any one of the words in any of the fields. I'd suggest building a search te

[google-appengine] Re: Is one big table table quicker than 8 smaller tables?

2008-12-06 Thread lock
On Dec 6, 9:46 pm, Nick Johnson <[EMAIL PROTECTED]> wrote: > On Dec 6, 1:47 am, lock <[EMAIL PROTECTED]> wrote: > > > Thanks guys, that's what I was hoping to hear, you saved me a couple > > hours trying to prove it for myself (not to mention the frustration)

[google-appengine] Re: How far can Google take this thing?

2008-12-05 Thread lock
I honestly have no idea what Google's intentions are, I myself am very new to web2.0, the cloud, ajax, etc. But in my limited experience with app engine so far I'd say it's an excellent platform for small specific purpose applications, say the type of app created by a developer in there spare tim

[google-appengine] Re: Is one big table table quicker than 8 smaller tables?

2008-12-05 Thread lock
Thanks guys, that's what I was hoping to hear, you saved me a couple hours trying to prove it for myself (not to mention the frustration). After I went away and thought about it some more I figured there must be some 'smarts' in the database to prevent the query time from increasing. Otherwise ho

[google-appengine] Is one big table table quicker than 8 smaller tables?

2008-12-04 Thread lock
I've been desperately trying to optimise my code to get rid of those 'High CPU' requests. Some changes worked others didn't, in the end I've really only gained a marginal improvement. So I'm now considering some significant structural changes and are wondering if anyone has tried something simil

[google-appengine] Re: Support for Decimal in Datastore?

2008-12-04 Thread lock
There is the FloatProperty, pretty sure that's what your after. http://code.google.com/appengine/docs/datastore/typesandpropertyclasses.html#FloatProperty --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App