@medusajs/cache-inmemory 1.8.11-snapshot-20240426112214 → 1.8.11-snapshot-20240516152256

Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.js CHANGED
@@ -17,10 +17,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
17
17
  return (mod && mod.__esModule) ? mod : { "default": mod };
18
18
  };
19
19
  Object.defineProperty(exports, "__esModule", { value: true });
20
- var inmemory_cache_1 = __importDefault(require("./services/inmemory-cache"));
21
- var service = inmemory_cache_1.default;
22
- var moduleDefinition = {
23
- service: service,
20
+ const inmemory_cache_1 = __importDefault(require("./services/inmemory-cache"));
21
+ const service = inmemory_cache_1.default;
22
+ const moduleDefinition = {
23
+ service,
24
24
  };
25
25
  exports.default = moduleDefinition;
26
26
  __exportStar(require("./initialize"), exports);
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;AACA,6EAA4D;AAE5D,IAAM,OAAO,GAAG,wBAAoB,CAAA;AAEpC,IAAM,gBAAgB,GAAkB;IACtC,OAAO,SAAA;CACR,CAAA;AAED,kBAAe,gBAAgB,CAAA;AAC/B,+CAA4B;AAC5B,0CAAuB"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;AACA,+EAA4D;AAE5D,MAAM,OAAO,GAAG,wBAAoB,CAAA;AAEpC,MAAM,gBAAgB,GAAkB;IACtC,OAAO;CACR,CAAA;AAED,kBAAe,gBAAgB,CAAA;AAC/B,+CAA4B;AAC5B,0CAAuB"}
@@ -1,59 +1,15 @@
1
1
  "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
- var __generator = (this && this.__generator) || function (thisArg, body) {
12
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
13
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
14
- function verb(n) { return function (v) { return step([n, v]); }; }
15
- function step(op) {
16
- if (f) throw new TypeError("Generator is already executing.");
17
- while (g && (g = 0, op[0] && (_ = 0)), _) try {
18
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
19
- if (y = 0, t) op = [op[0] & 2, t.value];
20
- switch (op[0]) {
21
- case 0: case 1: t = op; break;
22
- case 4: _.label++; return { value: op[1], done: false };
23
- case 5: _.label++; y = op[1]; op = [0]; continue;
24
- case 7: op = _.ops.pop(); _.trys.pop(); continue;
25
- default:
26
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
27
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
28
- if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
29
- if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
30
- if (t[2]) _.ops.pop();
31
- _.trys.pop(); continue;
32
- }
33
- op = body.call(thisArg, _);
34
- } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
35
- if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
36
- }
37
- };
38
2
  Object.defineProperty(exports, "__esModule", { value: true });
39
3
  exports.initialize = void 0;
40
- var modules_sdk_1 = require("@medusajs/modules-sdk");
41
- var initialize = function (options) { return __awaiter(void 0, void 0, void 0, function () {
42
- var serviceKey, loaded;
43
- return __generator(this, function (_a) {
44
- switch (_a.label) {
45
- case 0:
46
- serviceKey = modules_sdk_1.Modules.CACHE;
47
- return [4 /*yield*/, modules_sdk_1.MedusaModule.bootstrap({
48
- moduleKey: serviceKey,
49
- defaultPath: "@medusajs/cache-inmemory",
50
- declaration: options,
51
- })];
52
- case 1:
53
- loaded = _a.sent();
54
- return [2 /*return*/, loaded[serviceKey]];
55
- }
4
+ const modules_sdk_1 = require("@medusajs/modules-sdk");
5
+ const initialize = async (options) => {
6
+ const serviceKey = modules_sdk_1.Modules.CACHE;
7
+ const loaded = await modules_sdk_1.MedusaModule.bootstrap({
8
+ moduleKey: serviceKey,
9
+ defaultPath: "@medusajs/cache-inmemory",
10
+ declaration: options,
56
11
  });
57
- }); };
12
+ return loaded[serviceKey];
13
+ };
58
14
  exports.initialize = initialize;
59
15
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/initialize/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,qDAK8B;AAIvB,IAAM,UAAU,GAAG,UACxB,OAAgE;;;;;gBAE1D,UAAU,GAAG,qBAAO,CAAC,KAAK,CAAA;gBACjB,qBAAM,0BAAY,CAAC,SAAS,CAAgB;wBACzD,SAAS,EAAE,UAAU;wBACrB,WAAW,EAAE,0BAA0B;wBACvC,WAAW,EAAE,OAEgB;qBAC9B,CAAC,EAAA;;gBANI,MAAM,GAAG,SAMb;gBAEF,sBAAO,MAAM,CAAC,UAAU,CAAC,EAAA;;;KAC1B,CAAA;AAbY,QAAA,UAAU,cAatB"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/initialize/index.ts"],"names":[],"mappings":";;;AAAA,uDAK8B;AAIvB,MAAM,UAAU,GAAG,KAAK,EAC7B,OAAgE,EACxC,EAAE;IAC1B,MAAM,UAAU,GAAG,qBAAO,CAAC,KAAK,CAAA;IAChC,MAAM,MAAM,GAAG,MAAM,0BAAY,CAAC,SAAS,CAAgB;QACzD,SAAS,EAAE,UAAU;QACrB,WAAW,EAAE,0BAA0B;QACvC,WAAW,EAAE,OAEgB;KAC9B,CAAC,CAAA;IAEF,OAAO,MAAM,CAAC,UAAU,CAAC,CAAA;AAC3B,CAAC,CAAA;AAbY,QAAA,UAAU,cAatB"}
@@ -1,152 +1,80 @@
1
1
  "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
- var __generator = (this && this.__generator) || function (thisArg, body) {
12
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
13
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
14
- function verb(n) { return function (v) { return step([n, v]); }; }
15
- function step(op) {
16
- if (f) throw new TypeError("Generator is already executing.");
17
- while (g && (g = 0, op[0] && (_ = 0)), _) try {
18
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
19
- if (y = 0, t) op = [op[0] & 2, t.value];
20
- switch (op[0]) {
21
- case 0: case 1: t = op; break;
22
- case 4: _.label++; return { value: op[1], done: false };
23
- case 5: _.label++; y = op[1]; op = [0]; continue;
24
- case 7: op = _.ops.pop(); _.trys.pop(); continue;
25
- default:
26
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
27
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
28
- if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
29
- if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
30
- if (t[2]) _.ops.pop();
31
- _.trys.pop(); continue;
32
- }
33
- op = body.call(thisArg, _);
34
- } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
35
- if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
36
- }
37
- };
38
2
  Object.defineProperty(exports, "__esModule", { value: true });
39
- var DEFAULT_TTL = 30; // seconds
3
+ const DEFAULT_TTL = 30; // seconds
40
4
  /**
41
5
  * Class represents basic, in-memory, cache store.
42
6
  */
43
- var InMemoryCacheService = /** @class */ (function () {
44
- function InMemoryCacheService(deps, options) {
45
- if (options === void 0) { options = {}; }
46
- var _a;
7
+ class InMemoryCacheService {
8
+ constructor(deps, options = {}) {
47
9
  this.store = new Map();
48
10
  this.timoutRefs = new Map();
49
- this.TTL = (_a = options.ttl) !== null && _a !== void 0 ? _a : DEFAULT_TTL;
11
+ this.TTL = options.ttl ?? DEFAULT_TTL;
50
12
  }
51
13
  /**
52
14
  * Retrieve data from the cache.
53
15
  * @param key - cache key
54
16
  */
55
- InMemoryCacheService.prototype.get = function (key) {
56
- var _a;
57
- return __awaiter(this, void 0, void 0, function () {
58
- var now, record, recordExpire;
59
- return __generator(this, function (_b) {
60
- now = Date.now();
61
- record = this.store.get(key);
62
- recordExpire = (_a = record === null || record === void 0 ? void 0 : record.expire) !== null && _a !== void 0 ? _a : Infinity;
63
- if (!record || recordExpire < now) {
64
- return [2 /*return*/, null];
65
- }
66
- return [2 /*return*/, record.data];
67
- });
68
- });
69
- };
17
+ async get(key) {
18
+ const now = Date.now();
19
+ const record = this.store.get(key);
20
+ const recordExpire = record?.expire ?? Infinity;
21
+ if (!record || recordExpire < now) {
22
+ return null;
23
+ }
24
+ return record.data;
25
+ }
70
26
  /**
71
27
  * Set data to the cache.
72
28
  * @param key - cache key under which the data is stored
73
29
  * @param data - data to be stored in the cache
74
30
  * @param ttl - expiration time in seconds
75
31
  */
76
- InMemoryCacheService.prototype.set = function (key, data, ttl) {
77
- if (ttl === void 0) { ttl = this.TTL; }
78
- return __awaiter(this, void 0, void 0, function () {
79
- var record, oldRecord, ref;
80
- var _this = this;
81
- return __generator(this, function (_a) {
82
- if (ttl === 0) {
83
- return [2 /*return*/];
84
- }
85
- record = { data: data, expire: ttl * 1000 + Date.now() };
86
- oldRecord = this.store.get(key);
87
- if (oldRecord) {
88
- clearTimeout(this.timoutRefs.get(key));
89
- this.timoutRefs.delete(key);
90
- }
91
- ref = setTimeout(function () { return __awaiter(_this, void 0, void 0, function () {
92
- return __generator(this, function (_a) {
93
- switch (_a.label) {
94
- case 0: return [4 /*yield*/, this.invalidate(key)];
95
- case 1:
96
- _a.sent();
97
- return [2 /*return*/];
98
- }
99
- });
100
- }); }, ttl * 1000);
101
- ref.unref();
102
- this.timoutRefs.set(key, ref);
103
- this.store.set(key, record);
104
- return [2 /*return*/];
105
- });
106
- });
107
- };
32
+ async set(key, data, ttl = this.TTL) {
33
+ if (ttl === 0) {
34
+ return;
35
+ }
36
+ const record = { data, expire: ttl * 1000 + Date.now() };
37
+ const oldRecord = this.store.get(key);
38
+ if (oldRecord) {
39
+ clearTimeout(this.timoutRefs.get(key));
40
+ this.timoutRefs.delete(key);
41
+ }
42
+ const ref = setTimeout(async () => {
43
+ await this.invalidate(key);
44
+ }, ttl * 1000);
45
+ ref.unref();
46
+ this.timoutRefs.set(key, ref);
47
+ this.store.set(key, record);
48
+ }
108
49
  /**
109
50
  * Delete data from the cache.
110
51
  * Could use wildcard (*) matcher e.g. `invalidate("ps:*")` to delete all keys that start with "ps:"
111
52
  *
112
53
  * @param key - cache key
113
54
  */
114
- InMemoryCacheService.prototype.invalidate = function (key) {
115
- return __awaiter(this, void 0, void 0, function () {
116
- var keys, regExp_1;
117
- var _this = this;
118
- return __generator(this, function (_a) {
119
- keys = [key];
120
- if (key.includes("*")) {
121
- regExp_1 = new RegExp(key.replace("*", ".*"));
122
- keys = Array.from(this.store.keys()).filter(function (k) { return k.match(regExp_1); });
123
- }
124
- keys.forEach(function (key) {
125
- var timeoutRef = _this.timoutRefs.get(key);
126
- if (timeoutRef) {
127
- clearTimeout(timeoutRef);
128
- _this.timoutRefs.delete(key);
129
- }
130
- _this.store.delete(key);
131
- });
132
- return [2 /*return*/];
133
- });
55
+ async invalidate(key) {
56
+ let keys = [key];
57
+ if (key.includes("*")) {
58
+ const regExp = new RegExp(key.replace("*", ".*"));
59
+ keys = Array.from(this.store.keys()).filter((k) => k.match(regExp));
60
+ }
61
+ keys.forEach((key) => {
62
+ const timeoutRef = this.timoutRefs.get(key);
63
+ if (timeoutRef) {
64
+ clearTimeout(timeoutRef);
65
+ this.timoutRefs.delete(key);
66
+ }
67
+ this.store.delete(key);
134
68
  });
135
- };
69
+ }
136
70
  /**
137
71
  * Delete the entire cache.
138
72
  */
139
- InMemoryCacheService.prototype.clear = function () {
140
- return __awaiter(this, void 0, void 0, function () {
141
- return __generator(this, function (_a) {
142
- this.timoutRefs.forEach(function (ref) { return clearTimeout(ref); });
143
- this.timoutRefs.clear();
144
- this.store.clear();
145
- return [2 /*return*/];
146
- });
147
- });
148
- };
149
- return InMemoryCacheService;
150
- }());
73
+ async clear() {
74
+ this.timoutRefs.forEach((ref) => clearTimeout(ref));
75
+ this.timoutRefs.clear();
76
+ this.store.clear();
77
+ }
78
+ }
151
79
  exports.default = InMemoryCacheService;
152
80
  //# sourceMappingURL=inmemory-cache.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"inmemory-cache.js","sourceRoot":"","sources":["../../src/services/inmemory-cache.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"inmemory-cache.js","sourceRoot":"","sources":["../../src/services/inmemory-cache.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medusajs/cache-inmemory",
3
- "version": "1.8.11-snapshot-20240426112214",
3
+ "version": "1.8.11-snapshot-20240516152256",
4
4
  "description": "In-memory Cache Module for Medusa",
5
5
  "main": "dist/index.js",
6
6
  "repository": {
@@ -20,7 +20,7 @@
20
20
  "author": "Medusa",
21
21
  "license": "MIT",
22
22
  "devDependencies": {
23
- "@medusajs/types": "1.12.0-snapshot-20240426112214",
23
+ "@medusajs/types": "1.12.0-snapshot-20240516152256",
24
24
  "cross-env": "^5.2.1",
25
25
  "jest": "^29.6.3",
26
26
  "rimraf": "^5.0.1",
@@ -34,6 +34,6 @@
34
34
  "test": "jest --passWithNoTests"
35
35
  },
36
36
  "dependencies": {
37
- "@medusajs/modules-sdk": "1.12.11-snapshot-20240426112214"
37
+ "@medusajs/modules-sdk": "1.13.0-snapshot-20240516152256"
38
38
  }
39
39
  }