MCPcopy Create free account
hub / github.com/parse-community/parse-server / put

Method put

src/Controllers/CacheController.js:27–30  ·  view source on GitHub ↗
(key, value, ttl)

Source from the content-addressed store, hash-verified

25 }
26
27 put(key, value, ttl) {
28 const cacheKey = joinKeys(this.prefix, key);
29 return this.cache.put(cacheKey, value, ttl);
30 }
31
32 del(key) {
33 const cacheKey = joinKeys(this.prefix, key);

Callers 3

setAllClassesMethod · 0.45
putMethod · 0.45

Calls 1

joinKeysFunction · 0.85

Tested by

no test coverage detected