Class SQLiteDebug.PagerStats

    • Field Detail

      • memoryUsed

        public int memoryUsed
        the current amount of memory checked out by sqlite using sqlite3_malloc(). documented at http://www.sqlite.org/c3ref/c_status_malloc_size.html
      • pageCacheOverflow

        public int pageCacheOverflow
        the number of bytes of page cache allocation which could not be sattisfied by the SQLITE_CONFIG_PAGECACHE buffer and where forced to overflow to sqlite3_malloc(). The returned value includes allocations that overflowed because they where too large (they were larger than the "sz" parameter to SQLITE_CONFIG_PAGECACHE) and allocations that overflowed because no space was left in the page cache. documented at http://www.sqlite.org/c3ref/c_status_malloc_size.html
      • largestMemAlloc

        public int largestMemAlloc
        records the largest memory allocation request handed to sqlite3. documented at http://www.sqlite.org/c3ref/c_status_malloc_size.html
    • Constructor Detail

      • PagerStats

        public PagerStats()