On Fri, Mar 14, 2014 at 10:11 PM, Kevin G <[email protected]> wrote: > > Having added a Google Merchant Data Feed that links to my GAE application > seems to be spiking my instance hours. > Does anyone know if this is will occur continuosly with Google Merchant > constantly monitoring my links for valid content? >
Yes it will. The Merchant data feed is just another HTTP request for your instances to handle - more traffic means more instances will be needed. If your merchant feed changes slowly or not at all, what you could consider doing is caching your prepared feed into memcache or instance memory: that way an instance can rapidly respond to requests and hopefully lower the total instances required. ----------------- -Vinny P Technology & Media Advisor Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/d/optout.
