Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/parse-community/parse-server
/ get
Method
get
src/Controllers/CacheController.js:51–54 ·
view source on GitHub ↗
(key)
Source
from the content-addressed store, hash-verified
49
}
50
51
get(key) {
52
const
cacheKey = joinKeys(this.appId, key);
53
return
this.adapter.get(cacheKey).then(null, () => Promise.resolve(null));
54
}
55
56
put(key, value, ttl) {
57
const
cacheKey = joinKeys(this.appId, key);
Callers
nothing calls this directly
Calls
2
joinKeys
Function · 0.85
get
Method · 0.45
Tested by
no test coverage detected