I read the following in the docs for Java appengine:
standard: Most cost-effective for applications that have significant periods where they are not serving traffic.
flexible: No free tier. Application always has a minimum number of running instances. Most cost-effective for applications that serve traffic continuously.
What does "serve traffic continuously" means? I'm asking because my WAR will not serve traffic continuously but it will need to "stay up" all the time because of caching.
Also, for flexible, I saw the following pricing:
vCPU per core hour $0.0526
Memory per GB hour $0.0071
Persistent disk per GB per month $0.0400
Does the above means I should multiply each with *24*31 (month of uptime) in order to understand how much I'm going to pay?
For example:
2CPU = 0.0526 * 2 (cpus) * 24 (hours) * 31 (days in a month) = $78
2GB = 0.0071 * 2 (gb) * 24 (hours) * 31 (days in a month) = $10
1GB(disk) = 0.04 * 1 (month) = $0.04
A general question: Does Google cloud also serves a VPS-like computer where the user (me) can install what he wants? If so, where can I read about it?