shpasser / GaeSupportL5

Google App Engine Support package for Laravel 5
MIT License
160 stars 27 forks source link

Do you know if the package works with App Engine Flexible Environment? #69

Closed mgallegos closed 7 years ago

mgallegos commented 7 years ago

PHP App Engine Flexible Environment documentation:

https://cloud.google.com/php/getting-started/hello-world#running_php_apps_in_the_google_app_engine_flexible_environment

shpasser commented 7 years ago

No, but I'm going to check if it does.

On Jan 31, 2017, at 9:06 PM, Mario Gallegos notifications@github.com wrote:

PHP App Engine Flexible Environment documentation:

https://cloud.google.com/php/getting-started/hello-world#running_php_apps_in_the_google_app_engine_flexible_environment

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.

mgallegos commented 7 years ago

Thanks, by the way I found the example for Laravel:

https://github.com/GoogleCloudPlatform/php-docs-samples/tree/master/appengine/flexible/laravel

shpasser commented 7 years ago

Looks interesting. Maybe finally my package is not needed anymore and it is possible to run full Laravel app on AppEngine without any twiks.

On 1 Feb 2017, at 7:52, Mario Gallegos notifications@github.com wrote:

Thanks, by the way I found the example for Laravel:

https://github.com/GoogleCloudPlatform/php-docs-samples/tree/master/appengine/flexible/laravel

— You are receiving this because you commented. Reply to this email directly, view it on GitHub, or mute the thread.

mgallegos commented 7 years ago

I'm testing it now, everything seems to works out of the box, except using the google cloud storage, I tried using your package but it didn't work.

They provide an example in the following link, I'm going to explore it and try to work something out:

https://github.com/GoogleCloudPlatform/php-docs-samples/tree/master/appengine/flexible/storage

erandagan commented 7 years ago

@mgallegos Could you please provide more information regarding your experience with Laravel and GAE Flex? I'm considering a migration of a production GAE app running Laravel to the Flexible Environment

mgallegos commented 7 years ago

@erandagan it is pretty straight forward, take a look at the Laravel example, and to use google cloud storage I found this package: Superbalist / laravel-google-cloud-storage

erandagan commented 7 years ago

@mgallegos Thank you for the information! I hope It's not getting too much off-topic, but my main concern was whether all the local files (cached config, etc) are saved on the machine running the server, or on GCS (since one of the major issues GaeSupport solves is the slow access to GCS for file operations)

mgallegos commented 7 years ago

For what I've seen so far it's seems they are saved on the machine running the server. I've been testing the response time and it's feels a lot faster.

cassina commented 7 years ago

Hey, @erandagan do you have an update on the migration of your app? I´m testing a migration to GAE Flex also. Currently it´s working OK , doing some work around on some config issues with sessions. will add the GCS package mentioned by @mgallegos Superbalist / laravel-google-cloud-storage

erandagan commented 7 years ago

Hi @cassina, not yet. I've decided to wait with the migration until GAE Flex is more mature, since I'm migrating a backend which serves tens of thousands of clients. Rather not migrate while Flex is still in beta...

Which issues did you encounter?