接口 Cache

  • 所有已知子接口:
    Cache
    所有已知实现类:
    ExpiringCache, JCache, LfuCache, LruCache, ThreadLocalCache

    public interface Cache
    Cache interface to support storing and retrieval of value against a lookup key. It has two operation get and put.
  • put-Storing value against a key.
  • get-Retrieval of object.
另请参阅:
LruCache, JCache, ExpiringCache, ThreadLocalCache