Class CacheKey

java.lang.Object
org.apache.ibatis.cache.CacheKey
All Implemented Interfaces:
Serializable, Cloneable
Direct Known Subclasses:
NullCacheKey

public class CacheKey extends Object implements Cloneable, Serializable
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      See Also:
    • NULL_CACHE_KEY

      public static final CacheKey NULL_CACHE_KEY
    • DEFAULT_MULTIPLIER

      private static final int DEFAULT_MULTIPLIER
      See Also:
    • DEFAULT_HASHCODE

      private static final int DEFAULT_HASHCODE
      See Also:
    • multiplier

      private final int multiplier
    • hashcode

      private int hashcode
    • checksum

      private long checksum
    • count

      private int count
    • updateList

      private List<Object> updateList
  • Constructor Details

    • CacheKey

      public CacheKey()
    • CacheKey

      public CacheKey(Object[] objects)
  • Method Details