한우람
한우람

Reputation: 11

How can I Google App Engine performance improved?

I currently has serviced my app in Korea.

But, my app is installed in us-central because GAE not supported install for Asia.

so, i suppose it is very slow because it is faraway from GAE.

If that's problem, how can I solve this problem?

please suggest to me... thank you.

Upvotes: 0

Views: 112

Answers (1)

MrOnyancha
MrOnyancha

Reputation: 606

I have been using Google Cloud Platform for 4 years now, Including the Google App Engine. The performance of your application backend system can only be slow if the developer did not optimise the program well. I would suggest that you try out using some of the following key aspect in solving your problem:

  • Try so much to use MemCache for requests that are common to users and do not require instant real time updates.

  • Look at the algorithms you are putting in place. This is very important for your execution through put. For example lets say you want to run a search though a billion records, u can use quick search algorithms like QuickSort3way.

  • Lastly look at the choice of database you are using. You could mix NoSQL with SQL if you were only using SQL. If you are into big data then use BigQuery. This way your application's performance can drastically increase and scale up enormously.

Upvotes: 2

Related Questions