typeorm
Version:
Data-Mapper ORM for TypeScript and ES2023+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.
41 lines • 1.84 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.QueryResultCacheFactory = void 0;
const RedisQueryResultCache_1 = require("./RedisQueryResultCache");
const DbQueryResultCache_1 = require("./DbQueryResultCache");
const TypeORMError_1 = require("../error/TypeORMError");
/**
* Caches query result into Redis database.
*/
class QueryResultCacheFactory {
// -------------------------------------------------------------------------
// Constructor
// -------------------------------------------------------------------------
constructor(dataSource) {
this.dataSource = dataSource;
}
// -------------------------------------------------------------------------
// Public Methods
// -------------------------------------------------------------------------
/**
* Creates a new query result cache based on connection options.
*/
create() {
if (!this.dataSource.options.cache)
throw new TypeORMError_1.TypeORMError(`To use cache you need to enable it in connection options by setting cache: true or providing some caching options. Example: { host: ..., username: ..., cache: true }`);
const cache = this.dataSource.options.cache;
if (cache.provider && typeof cache.provider === "function") {
return cache.provider(this.dataSource);
}
if (cache.type === "redis" ||
cache.type === "ioredis" ||
cache.type === "ioredis/cluster") {
return new RedisQueryResultCache_1.RedisQueryResultCache(this.dataSource, cache.type);
}
else {
return new DbQueryResultCache_1.DbQueryResultCache(this.dataSource);
}
}
}
exports.QueryResultCacheFactory = QueryResultCacheFactory;
//# sourceMappingURL=QueryResultCacheFactory.js.map