Class PrimitiveEntrySizeCalculator

  • All Implemented Interfaces:
    org.infinispan.commons.util.EntrySizeCalculator<Object,​Object>

    public class PrimitiveEntrySizeCalculator
    extends org.infinispan.commons.util.AbstractEntrySizeCalculatorHelper<Object,​Object>
    Entry Size calculator that returns an approximation of how much various primitives, primitive wrappers, Strings, and arrays
    Since:
    8.0
    Author:
    wburns
    • Constructor Detail

      • PrimitiveEntrySizeCalculator

        public PrimitiveEntrySizeCalculator()
    • Method Detail

      • calculateSize

        public long calculateSize​(Object key,
                                  Object value)
        Description copied from interface: org.infinispan.commons.util.EntrySizeCalculator
        Method used to calculate how much memory in size the key and value use.
        Parameters:
        key - The key for this entry to be used in size calculation
        value - The value for this entry to be used in size calculation
        Returns:
        The size approximately in memory the key and value use
      • handleObject

        protected long handleObject​(Object object)