google app engine - How to migrate gae app to new config? -
I'm update that is already using the default configuration so I module to the configuration I'm using
application: newkoolproject # other settings here ... version: newkool runtime: python27 api_version: 1 threadsafe: true automatic_scaling: min_idle_instances: 5 max_idle_instances: automatic # default value min_pending_latency: automatic : # Default value max_pending_latency: 30ms max_concurrent_requests: 50 I'll pay for example hours, data Reads and complex searches of a few dollars a day on my current budget (where there is a limit of 7 US dollars for one day to avoid spike due to my DoSing or other technical problem).
Is it possible that I can try to spend my app in the freighter using memcache and other technologies? Or should I forget to access free-level (& lt; 28 examples of hours etc) and instead make a configuration for a more optimal UX? How will change change my cost?
Update 141010 18:59 CET
I can add Aepstet
You can get your local app engine development Aptests will need to turn on the server, go through your normal user flow how it can be instructed to:
Make sure you have turned on the calculation of costs of RPC:
appstats_CALC_RPC_CO STS = true Once you go through a specific user flow, you localhost: go to 8080 / _ah / statistics and the estimates will not produce How much specific call and flow will cost. Really great tool, because it helps identify your obstacles and slow-moving areas in your application.
Google's recommendation is to split work into smaller units (as much as possible) by leveraging, not just using the memcache, but also the work queue.
UPDATE: simple memcache using examples
my_results = memcache.get ( "" a-key-of-this-before) If not, my_results: #Do here Work memcache.set ("some-key-of-this-object", my_results) my_rays return
Comments
Post a Comment