Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/TuiQiao/CBoard
/ put
Method
put
src/main/java/org/cboard/cache/EhCacheManager.java:31–34 ·
view source on GitHub ↗
(String key, T data, long expire)
Source
from the content-addressed store, hash-verified
29
}
30
31
@Override
32
public
void
put(String key, T data, long expire) {
33
cache.put(key,
new
CacheObject(
new
Date().getTime(), expire, data));
34
}
35
36
@Override
37
public
T get(String key) {
Callers
nothing calls this directly
Calls
1
put
Method · 0.65
Tested by
no test coverage detected