cool-admin-api/app/extend/application.ts
2019-09-28 16:12:42 +08:00

38 lines
757 B
TypeScript

/**
* 框架扩展
*/
export default class Application {
/**
* redis保存值
* @param key 键
* @param value 值
* @param expire 过期时间 单位:秒
*/
public static async redisSet (key, value, expire?: any) {
// @ts-ignore
const redis = this.redis;
await redis.set(key, value);
if (expire) {
await redis.expire(key, expire);
}
}
/**
* redis获得值
* @param key 键
*/
public static async redisGet (key) {
// @ts-ignore
return this.redis.get(key);
}
/**
* redis 删除key
* @param key
*/
public static async redisDel (key) {
// @ts-ignore
return this.redis.del(key);
}
}