What is the benefits of modules in google app engine -


in google app engine, benefits of using modules instead separate applications?

for example if having application named "example" example.com , need new blog feature blog.example.com.

now better? new module named "blog" in "example" application or new application named "example blog" that?

and note concern google's free quota app engine too. if use separate applications can free quotas each individual application. if used modules should manage both example.com , blog.example.com in same free quota usage.

so option best on price comparison , best in performance

modules operates under same appid, mean will:

  • share same datastore data
  • same task queue interoperability
  • same configuration other google cloud services (bigquery, storage, etc)

there not difference in performance, separate apps or separate modules of same app have resources need.

as price, 2 apps little bit cheaper 2 modules, because of free quota. don't think there significant difference apps.


Comments

Popular posts from this blog

java - Could not locate OpenAL library -

c++ - Delete matches in OpenCV (Keypoints and descriptors) -

sorting - opencl Bitonic sort with 64 bits keys -