Esempio n. 1
0
 public void clear() {
   cache.clear();
 }
Esempio n. 2
0
 public void put(long tableId, long offset, TupleBlock tupleBlock) {
   cache.put(tableId, offset, tupleBlock);
 }
Esempio n. 3
0
 public void invalidate(long tableId) {
   cache.invalidate(tableId);
 }
Esempio n. 4
0
 public TupleBlock get(long tableId, long offset) {
   return cache.get(tableId, offset);
 }