org.sirix.cache.GuavaCache Maven / Gradle / Ivy
// package org.sirix.cache;
//
// import static com.google.common.base.Preconditions.checkNotNull;
// import com.google.common.cache.CacheBuilder;
// import com.google.common.cache.CacheLoader;
// import com.google.common.cache.LoadingCache;
// import com.google.common.cache.RemovalListener;
// import com.google.common.cache.RemovalNotification;
// import com.google.common.collect.ImmutableMap;
//
// import java.util.Map;
// import java.util.concurrent.ConcurrentMap;
// import java.util.concurrent.ExecutionException;
// import java.util.concurrent.TimeUnit;
//
// import javax.annotation.Nonnull;
// import javax.annotation.Nullable;
//
// import org.sirix.api.PageReadTrx;
// import org.sirix.exception.SirixIOException;
// import org.sirix.page.PageKind;
//
/// **
// * Cache utilizing the Guava cache functionality.
// *
// * @author Johannes Lichtenberger, University of Konstanz
// *
// */
// public class GuavaCache implements Cache {
//
// /**
// * Determines after how many seconds to expire entries after the last access.
// */
// private static final int EXPIRE_AFTER = 15;
//
// /**
// * Maximum cache size.
// */
// private static final int MAX_SIZE = 20;
//
// /**
// * {@link LoadingCache} reference.
// */
// private final LoadingCache mCache;
//
// /**
// * Second cache.
// */
// private final Cache mSecondCache;
//
// /**
// * Constructor with second cache.
// *
// * @param pageReadTransaction
// * {@link PageReadTrx} implementation
// * @param secondCache
// * second fallback cache
// */
// public GuavaCache(final PageReadTrx pageReadTransaction,
// final Cache secondCache) {
// checkNotNull(pageReadTransaction);
// mSecondCache = checkNotNull(secondCache);
//
// final CacheBuilder