mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-12-28 14:23:02 +05:00
feat(database): add cache to mongoose adapter
This commit is contained in:
parent
ac461a104d
commit
c7ebdb78d4
1 changed files with 29 additions and 5 deletions
|
@ -1,6 +1,7 @@
|
||||||
import mongoose from "mongoose";
|
import mongoose from "mongoose";
|
||||||
import IDatabaseAdapter from "./IDatabaseAdapter.js";
|
import IDatabaseAdapter from "./IDatabaseAdapter.js";
|
||||||
import logger from "../../helpers/logger.js";
|
import logger from "../../helpers/logger.js";
|
||||||
|
import Cache from "../cache/MapCache.js";
|
||||||
|
|
||||||
export default class MongooseAdapter extends IDatabaseAdapter {
|
export default class MongooseAdapter extends IDatabaseAdapter {
|
||||||
/**
|
/**
|
||||||
|
@ -16,8 +17,8 @@ export default class MongooseAdapter extends IDatabaseAdapter {
|
||||||
}
|
}
|
||||||
|
|
||||||
this.uri = uri;
|
this.uri = uri;
|
||||||
|
|
||||||
this.options = options;
|
this.options = options;
|
||||||
|
this.cache = new Cache();
|
||||||
}
|
}
|
||||||
|
|
||||||
async connect() {
|
async connect() {
|
||||||
|
@ -28,21 +29,44 @@ export default class MongooseAdapter extends IDatabaseAdapter {
|
||||||
async disconnect() {
|
async disconnect() {
|
||||||
await mongoose.disconnect();
|
await mongoose.disconnect();
|
||||||
logger.warn("Database disconnected.");
|
logger.warn("Database disconnected.");
|
||||||
|
this.cache.clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
#generateCacheKey(modelName, query, options) {
|
||||||
|
return `${modelName}:${JSON.stringify(query)}:${JSON.stringify(options)}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
async find(model, query = {}, options = {}) {
|
async find(model, query = {}, options = {}) {
|
||||||
return model.find(query, null, options).exec();
|
const cacheKey = this.#generateCacheKey(model.modelName, query, options);
|
||||||
|
if (this.cache.get(cacheKey)) {
|
||||||
|
return this.cache.get(cacheKey);
|
||||||
|
}
|
||||||
|
|
||||||
|
const result = await model.find(query, null, options).exec();
|
||||||
|
this.cache.set(cacheKey, result);
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
async findOne(model, query = {}, options = {}) {
|
async findOne(model, query = {}, options = {}) {
|
||||||
return model.findOne(query, null, options).exec();
|
const cacheKey = this.#generateCacheKey(model.modelName, query, options);
|
||||||
|
if (this.cache.get(cacheKey)) {
|
||||||
|
return this.cache.get(cacheKey);
|
||||||
|
}
|
||||||
|
|
||||||
|
const result = await model.findOne(query, null, options).exec();
|
||||||
|
this.cache.set(cacheKey, result);
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
async updateOne(model, filter, update, options = {}) {
|
async updateOne(model, filter, update, options = {}) {
|
||||||
return model.updateOne(filter, update, options).exec();
|
const result = await model.updateOne(filter, update, options).exec();
|
||||||
|
this.cache.clear();
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
async deleteOne(model, filter) {
|
async deleteOne(model, filter) {
|
||||||
return model.deleteOne(filter).exec();
|
const result = await model.deleteOne(filter).exec();
|
||||||
|
this.cache.clear();
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue