Question

I've been thinking of creating an online service that heavily depends on HTTP GET/POST requests and some backend processing. But I'm a little confused on which is the best choice of these: Google App Engine or Google Apps Script?

I know Google App Script deals mainly with the other Google products, but that I don't mind; I can write scripts to handle my requests, do the processing, and make databases out of spreadsheets. Yes it's somewhat tiresome, but Google Business Apps is quite attractive to me since I already use it.

I haven't used a PaaS before to be honest. How would App Engine be any better? technically, pricing-wise, business-wise, security-wise... etc.

Was it helpful?

Solution

It's depend on what you want to do.

If you except a heavy load, AppEngine is scalable and permit to handle many requests per second. It launch more instances automatically. AppEngine have some free quotas and if you develop your application correctly by using memcache you can stay under these quotas.

Doing service with App Engine is completely different than Apps Script which is juste kind of javascript. You can use Python, Java, PHP or Go on App Engine. And if you want to communicate with other Google's products you need to authenticate which is a little bit more complicated than App Script.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top