Interface CacheableDataStatistics

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static long NOT_CACHED_COUNT  
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      long getCacheHitCount()
      The number of successful cache look-ups for this data from its configured cache region since the last Statistics clearing
      long getCacheMissCount()
      The number of unsuccessful cache look-ups for this data from its configured cache region since the last Statistics clearing
      long getCachePutCount()
      The number of times this data has been into its configured cache region since the last Statistics clearing
      java.lang.String getCacheRegionName()
      The name of the region where this data is cached.
    • Method Detail

      • getCacheRegionName

        java.lang.String getCacheRegionName()
        The name of the region where this data is cached.
      • getCachePutCount

        long getCachePutCount()
        The number of times this data has been into its configured cache region since the last Statistics clearing
      • getCacheHitCount

        long getCacheHitCount()
        The number of successful cache look-ups for this data from its configured cache region since the last Statistics clearing
      • getCacheMissCount

        long getCacheMissCount()
        The number of unsuccessful cache look-ups for this data from its configured cache region since the last Statistics clearing