5

Google App Engine's documentation states that memcache calls will count towards a quota. Yet, when I click through, memcache quotas or cost is not listed. How can I find the new pricing changes?

ehfeng
  • 3,807
  • 4
  • 33
  • 42
  • Did you figure out how the pricing works for Memcache operations? I've been looking for a while and haven't found anything. – Gray May 10 '12 at 22:55
  • No, I was under the impression that because Memcache is unpredictable, there's no pricing. – ehfeng May 13 '12 at 06:59

1 Answers1

5

You can find it in your app dashboard :

dashboard -> main -> Quota Details -> Memcache

Kjuly
  • 34,476
  • 22
  • 104
  • 118
  • Yep, it's there allright. Though in that view you only see the consumption for (up to) the last 24 hours, you don't really have a history of it. – Shivan Dragon Nov 29 '11 at 10:36
  • @AndreiBodnarescu ya, you might create a history log by yourself if you can. ;) BTW, I find there're several charts in dashboard, I think the GAE just stats the history only for those. – Kjuly Nov 29 '11 at 11:37
  • 1
    yeah but if you do that you're increasing your resource usage, especialy if you want to have a detailed output like the console has for other stats. You might get away with it if you put it in an async task, but then you're not doing a real time logging of it. – Shivan Dragon Nov 30 '11 at 07:24