I am getting a bit worried actually, because it increased by another
20MB even though only a few KB of data were added.
These are the Models I have, with obviously only a single index.
class HTML(db.Model):
html = db.TextProperty()
class Book(db.Model):
added = db.DateTimeProperty(auto_now_add=True)
free = db.BooleanProperty(default=True)
HTML got about 40 entities at about 100KB each. Book less than 500
currently. I only run a single task every hour with no payload. And
memcache is just a cache for HTML, deleted every hour, and then filled
with the entity content again if queried. It is replaced with the same
name, but it almost seems to me as if deleted memcache entries are
still kept. This would add up to up to about 4MB per hour.
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.