Example usage for com.google.common.cache AbstractCache interface-usage

List of usage examples for com.google.common.cache AbstractCache interface-usage

Introduction

In this page you can find the example usage for com.google.common.cache AbstractCache interface-usage.

Usage

From source file com.hortonworks.registries.schemaregistry.cache.SchemaBranchCache.java

public class SchemaBranchCache implements AbstractCache {
    private static final Logger LOG = LoggerFactory.getLogger(SchemaBranchCache.class);

    private final LoadingCache<Key, SchemaBranch> loadingCache;
    private final BiMap<SchemaBranchKey, Long> schemaBranchNameToIdMap;

From source file com.hortonworks.registries.schemaregistry.cache.SchemaVersionInfoCache.java

/**
 * Loading cache for {@link Key} with values {@link SchemaVersionInfo}.
 */
public class SchemaVersionInfoCache implements AbstractCache {
    private static final Logger LOG = LoggerFactory.getLogger(SchemaVersionInfoCache.class);