Class SchemaIndexCacheStat


  • public class SchemaIndexCacheStat
    extends Object
    Class for accumulation of record types and number of indexed records in index tree.
    • Constructor Detail

      • SchemaIndexCacheStat

        public SchemaIndexCacheStat()
    • Method Detail

      • accumulate

        public void accumulate​(SchemaIndexCacheStat stat)
        Adds statistics from stat to the current statistics.
        Parameters:
        stat - Statistics.
      • addType

        public void addType​(QueryTypeDescriptorImpl type)
        Adds type to indexed types.
        Parameters:
        type - Type.
      • add

        public void add​(int scanned)
        Adds to number of scanned keys given scanned.
        Parameters:
        scanned - Number of scanned keys during partition processing. Must be positive or zero.
      • scannedKeys

        public int scannedKeys()
        Returns:
        Number of scanned keys.
      • typeNames

        public Collection<String> typeNames()
        Returns:
        Unmodifiable collection of processed type names.