All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.sirix.cache.NamesCache Maven / Gradle / Ivy

package io.sirix.cache;

import com.github.benmanes.caffeine.cache.Caffeine;
import io.sirix.index.name.Names;

import java.util.Map;
import java.util.concurrent.TimeUnit;

public final class NamesCache implements Cache {

  private final com.github.benmanes.caffeine.cache.Cache cache;

  public NamesCache(final int maxSize) {
    cache = Caffeine.newBuilder()
                    .maximumSize(maxSize)
                    .expireAfterAccess(5, TimeUnit.MINUTES)
                    .scheduler(scheduler)
                    .build();
  }

  @Override
  public void clear() {
    cache.invalidateAll();
  }

  @Override
  public Names get(NamesCacheKey key) {
    return cache.getIfPresent(key);
  }

  @Override
  public void put(NamesCacheKey key, Names value) {
    cache.put(key, value);
  }

  @Override
  public void putAll(Map map) {
    cache.putAll(map);
  }

  @Override
  public void toSecondCache() {
    throw new UnsupportedOperationException();
  }

  @Override
  public Map getAll(Iterable keys) {
    return cache.getAllPresent(keys);
  }

  @Override
  public void remove(NamesCacheKey key) {
    cache.invalidate(key);
  }

  @Override
  public void close() {
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy