[google-appengine] Rate Limit Exceeded

2015-08-16 Thread Vermilian Mobile
I am having this error messane when I try to create a new project in Google Api Console: Rate Limit Exceeded What can I do? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it,

[google-appengine] Re: At what point is querying down a hierarchical tree faster than querying through all the end nodes?

2015-08-16 Thread Sanket More
Hey Nick! After I submitted my question, I went through lots of information sources and gathered some information. I feel like my question was based on many misconceptions about google app engine's datastore. I think I have a strategy for the restaurant problem. The user will provide me with co

[google-appengine] At what point is querying down a hierarchical tree faster than querying through all the end nodes?

2015-08-16 Thread Nick
The general rule is optimize for your primary use case, denormalise to support others. In addition, enforce and support constraints In your code. If your primary case is restaurant search, embed and index all necessary data. This will be the fastest solution and easiest to work with On Appengin

[google-appengine] At what point is querying down a hierarchical tree faster than querying through all the end nodes?

2015-08-16 Thread Sanket More
Hello! I am having so much trouble understanding datastore queries! This is my problem. I can't seem to figure out whether querying from the top of a tree down to a end node is faster than querying through all end nodes. I don't care about write cost or about transactions, I just want to know wha