Re: [google-appengine] Re: Python Google App Engine Shopping Cart

2014-05-15 Thread timh
I am not aware of any. Foxycart would be easy integrate as it is a seperate service you use, rather than run in your own server. T On Thursday, May 15, 2014 6:41:26 AM UTC+8, Garry Keneth Garcia wrote: I know there are a lot. What I want specifically is Webapp2 + GAE + Datastore = Shopping

Re: [google-appengine] Re: Python Google App Engine Shopping Cart

2014-05-15 Thread Vinny P
On Wed, May 14, 2014 at 5:41 PM, Garry Keneth Garcia gkmgar...@gmail.com wrote: I know there are a lot. What I want specifically is Webapp2 + GAE + Datastore = Shopping Cart. Do you know anything like this? There's https://github.com/prakhar1989/JokaStore which seems to be a slightly older

Re: [google-appengine] Re: access localhost from remote computer

2014-05-15 Thread Vinny P
On Wed, May 14, 2014 at 2:50 PM, Juan de Dios Becerra j.becerra4...@gmail.com wrote: Hi , I have the same problem but I am using Java in Eclipse with GAE plugin, if I modify the Run Configuration, in the section Arguments I put: --address=/home/juan_becerra/workspace/GPlusSanminaUser/war the

Re: [google-appengine] Re: access localhost from remote computer

2014-05-15 Thread Alejandro Gonzalez
Another approach would be assign a name to your local machine. This way all computers in your local network can access your server with myhost.com:8080 . You just need to edit your hosts file ( /etc/hosts - may depend on your OS) and add something like: 127.0.0.1 myhost.com Cheers!

[google-appengine] Appengine SDK 1.9.4 is slow to query the datastore

2014-05-15 Thread bmurr
I upgraded from 1.9.2 to 1.9.4 and have noticed that datastore queries are taking substantially longer -- here's a comparison for loading the same page (not using NDB): before: instance.py:385] Request handled by Instancea05df4abeccece9cdfeec56ee573ea1627a0 : 1/8, total: 3 in 0.9100s after:

[google-appengine] Re: Appengine SDK 1.9.4 is slow to query the datastore

2014-05-15 Thread bmurr
Guess I should have searched the issues more carefully before posting: https://code.google.com/p/googleappengine/issues/detail?id=10845q=stars%3A2sort=-idcolspec=ID%20Type%20Component%20Status%20Stars%20Summary%20Language%20Priority%20Owner%20Log -- You received this message because you are

[google-appengine] Re: Appengine SDK 1.9.4 is slow to query the datastore

2014-05-15 Thread Kaan Soral
Thanks for posting a discussion, I will update to a newer version after this issue is fixed I remember when queries, and datastore slowed down when appengine switched from devappserver1 to the current devappserver2 - datastore slowed ~10x - simple queries that fetched ~20 entities started

[google-appengine] analysing /_ah/api performance

2014-05-15 Thread Robert King
HI, is this possible? I tried searching app engine logs: path:/_ah/api.* nothing came up obviously. for examplehttp://stackoverflow.com/questions/23618638/google-cloud-endpoints-ah-api-discovery-v1-apis-myapi-v1-rpc-takes-half-a-minu ,

Re: [google-appengine] google app engine application run with ipaddress instead of localhost

2014-05-15 Thread Nick
You can add the specified parameters directly to the arguments in your run config. (Run - Run Configurations , Web Application - Project, Arguments tab, Program Arguments) For example, --port=8080 -a 0.0.0.0 /Users/nick/Documents/projects/project/target/project-1.0-SNAPSHOT On Thursday,