MCPcopy
hub / github.com/TuiQiao/CBoard / CacheManager

Interface CacheManager

src/main/java/org/cboard/cache/CacheManager.java:6–13  ·  view source on GitHub ↗

Created by yfyuan on 2016/11/7.

Source from the content-addressed store, hash-verified

4 * Created by yfyuan on 2016/11/7.
5 */
6public interface CacheManager<T> {
7
8 void put(String key, T data, long expire);
9
10 T get(String key);
11
12 void remove(String key);
13}

Callers 24

putMethod · 0.65
putMethod · 0.65
putMethod · 0.65
datasetMethod · 0.65
addFilterGroupIdMethod · 0.65
addExpressionIdMethod · 0.65
addDimensionIdMethod · 0.65
deleteUserMethod · 0.65
getMethod · 0.65
getMethod · 0.65
getMethod · 0.65
loadUserDetailsMethod · 0.65

Implementers 3

HeapCacheManagersrc/main/java/org/cboard/cache/HeapCac
EhCacheManagersrc/main/java/org/cboard/cache/EhCache
RedisCacheManagersrc/main/java/org/cboard/cache/RedisCa

Calls

no outgoing calls

Tested by

no test coverage detected