我目前正在使用django / tastypie网络应用程序。我有一个动态资源,它基于我的一个python模块,它将返回这样的数据
{
'company_code_1': {'indicator1': 1000, 'indicator2':'Name1'},
'company_code_2': {'indicator1': 150, 'indicator2':'Name2'}
}
取决于用户偏好,我们将发送有限公司和有限的指标。
现在问题是我们每次用户点击api时都会计算值。
现在,我希望通过实现缓存来避免重复计算。但我很困惑使用哪个缓存。请建议一个方法。