我在 Google App Engine (Python SDK) 中使用 memcahce 来保持每年的学生人数,我在 memcache 字典中保存
{'first': 32, 'second': 23 }
如何自动更新一年级学生的数量并放回内存缓存?当我将学生的新模型放入数据存储区时,我想增加。我试过了,但它不起作用(我也尝试在最后一行添加而不是关闭,但它不起作用)
data = memcache.get('students')
if data is None:
data = {}
data[student_year] = data.get(student_year, 0) + 1
memcache.set('students', data, 3600)