我正在使用 Sails 向 Redis 添加一些数据......它工作正常,但我不知道如何设置密钥的 EXPIRE......
我使用模型的sails-redis适配器/连接......我的模型看起来像这样
module.exports = {
connection: 'cache',
attributes: {
id: {type: 'string', primaryKey: true},
data: {type: 'string'}
}
};
保存我使用的模型
Cache.create({id: "somekey", data: data}, function(err, data){})