nest-redis-cache
Version:
使用redis实现nestjs接口层面的缓存
66 lines • 2.73 kB
JavaScript
;
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
var __param = (this && this.__param) || function (paramIndex, decorator) {
return function (target, key) { decorator(target, key, paramIndex); }
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.RedisCacheService = void 0;
const common_1 = require("@nestjs/common");
const constants_1 = require("../../constants");
const ioredis_1 = require("ioredis");
let RedisCacheService = class RedisCacheService {
constructor(redisConfig) {
this.redisConfig = redisConfig;
}
onModuleInit() {
this.client = this.connectRedis;
}
async set(key, value, second) {
var _a;
value = JSON.stringify(value);
const client = (_a = this.client) !== null && _a !== void 0 ? _a : this.connectRedis;
if (!second) {
await client.set(key, value);
}
else {
await client.set(key, value, 'EX', second);
}
}
async get(key) {
var _a;
const client = (_a = this.client) !== null && _a !== void 0 ? _a : this.connectRedis;
const data = await client.get(key);
if (data) {
return JSON.parse(data);
}
else {
return null;
}
}
get connectRedis() {
const { username = '', password = '', host = '127.0.0.1', port = 6379, db = 0, } = this.redisConfig || {};
let url = null;
if (password) {
url = `redis://${username}:${password}@${host}:${port}/${db}?allowUsernameInURI=true`;
}
else {
url = `redis://${host}:${port}/${db}?allowUsernameInURI=true`;
}
return new ioredis_1.default(url);
}
};
RedisCacheService = __decorate([
(0, common_1.Injectable)({}),
__param(0, (0, common_1.Inject)(constants_1.REDIS_CACHE_KEY)),
__metadata("design:paramtypes", [Object])
], RedisCacheService);
exports.RedisCacheService = RedisCacheService;
//# sourceMappingURL=redis-cache.service.js.map