[google-appengine] Re: Laravel deployment using Google App Engine: No such file or directory

2017-06-15 Thread Javier Pedrera
Did you finally solve it? I'm still stuck with this. If you get this working please don't forget to include the solution. Thanks. On Wednesday, June 14, 2017 at 9:51:44 PM UTC+2, George (Cloud Platform Support) wrote: > > How does your final, corrected app.yaml look like? Does it contain a line

[google-appengine] Re: Laravel deployment using Google App Engine: No such file or directory

2017-06-15 Thread Javier Pedrera
Did you finally solve it? If so please don't forget to add the solution, I'm still stuck into it. Thanks. -- 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, send an email to g

[google-appengine] Re: Laravel deployment using Google App Engine: No such file or directory

2017-06-15 Thread Javier Pedrera
Did you finally solve it? If so please don't forget to add the solution, I'm still stuck into it. THanks -- 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, send an email to go

[google-appengine] Caching a Cloud Endpoint response

2017-06-15 Thread Andrey Rychkov
Hi, Could you give me any signs if there is any methods to set caching time of endpoints responses? I have several endpoints that return a huge list of objects (~1MB) and I need to cache them someway. I tried to cache data in memcache, but it didn't help much. Am I right that the only method i

[google-appengine] appengine datastore model for twitter like showing posts from users followed

2017-06-15 Thread Suresh Jeevanandam
I am working on a web system where a feature is similar to Twitter's concept of following a list of users and seeing their posts as a list. The simple model I came up with requires join operation which is not available in datastore. class Post(Model): author = reference to user id conte

[google-appengine] Re: Laravel deployment using Google App Engine: No such file or directory

2017-06-15 Thread Adeel Ahmad
Hi George, Here are my app.yaml contents: runtime: php env: flex runtime_config: document_root: public skip_files: - .env env_variables: APP_LOG: errorlog APP_KEY: base64:BEVs/DqwJFIx+WAhNu/AMgbs3uv4rOyg84kgFgMg81M= STORAGE_DIR: /tmp CACHE_DRIVER: database SESSION_DRIVER: datab

[google-appengine] Re: there is somthing wrong in console

2017-06-15 Thread 'Yannick (Cloud Platform Support)' via Google App Engine
Hello. Problems like this very rarely occur and are usually temporary. Is this problem still occurring? If so you should create a new Cloud Console issue with the following information: 1) Screenshots of the pages that fa

[google-appengine] Re: Caching a Cloud Endpoint response

2017-06-15 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Andrey, You could use the Author's own solution to his "How to cache the response in google cloud endpoint?" question in stackoverflow. A cache dedicated servlet does not seem necessary.

[google-appengine] Re: appengine datastore model for twitter like showing posts from users followed

2017-06-15 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
You are correct, performing the two separate queries is the correct way of retrieving the Post entities made by the authors who are followed by current_user. A JOIN operation is actually the same thing, just in SQL syntax. The first step would be to JOIN all 'Post' entities with 'Following' en

Re: [google-appengine] appengine datastore model for twitter like showing posts from users followed

2017-06-15 Thread 'Alex Martelli' via Google App Engine
I would recommend denormalizing your data model -- a common optimization in non-relational DBs (like the datastore) and frequently useful in relational DBs as well. Just have user entities, with the user id as their key's name, containing a list of the authors the user follows. This will make addin

[google-appengine] Re: Task rate limits?

2017-06-15 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
The limits on Task Queue calls can be found on the Quota page , specifically the 'Queue execution rate' being of importance. Too many tasks being executed on a single queue will inevitably result in underlying contention. This leads to the

Re: [google-appengine] Re: Task rate limits?

2017-06-15 Thread Emlyn
Thanks for that feedback Jordan, that's potentially really useful. So maybe you are proposing that something like this is happening: - I enqueue a massive amount of tasks very quickly (and those tasks enqueue more tasks etc). - Inevitably, there is less capacity available (instances) than necessa