option to disable chunk cache

This commit is contained in:
Chris Lu 2020-07-15 09:51:51 -07:00
parent 0db4204c81
commit 316e853e0e

View file

@ -10,6 +10,9 @@ public class ChunkCache {
private final Cache<String, byte[]> cache;
public ChunkCache(int maxEntries) {
if (maxEntries == 0) {
return;
}
this.cache = CacheBuilder.newBuilder()
.maximumSize(maxEntries)
.expireAfterAccess(1, TimeUnit.HOURS)
@ -17,10 +20,16 @@ public class ChunkCache {
}
public byte[] getChunk(String fileId) {
if (this.cache == null) {
return;
}
return this.cache.getIfPresent(fileId);
}
public void setChunk(String fileId, byte[] data) {
if (this.cache == null) {
return;
}
this.cache.put(fileId, data);
}