私はしばらくの間、Google App Engine (Python) で Memcache を使用してきましたが、通常は非常にうまく機能します。ここ数日で、以下の例のようなコードで、データベース エントリを更新した直後に更新すると、間に合わないことに気付きました。これは、エントリをデータベースに保存するのに時間がかかるためですか? 解決策はありますか?
# I store the comment here
c = Comment(content = content, submitter = submitter, group_id=int(group_id), user_id = user_id)
c.put()
# Right after I store the comment I refresh the cache
comment_cache(int(group_id), True)
多くの場合、最新のコメントはキャッシュにありません。