TCache_Statistics
What: class or structure
File: _Cache
Layer: 1
Platforms: C++, C#, Javascript, Pascal (Object), PHP, Python
In C++ and Pascal, this is a structure. On other platforms, it is a class. It contains
the following fields in the following order. Note that Hits + Misses = total reads and
Write - Replacements = non-replacement writes.
Hits
Type: int32
Number of cache read hits.
Misses
Type: int32
Number of cache misses.
Writes
Type: int32
Total number of writes into the cache.
Turns
Type: int32
Number of times blocks were thrown away to make room for more.
Replacements
Type: int32
Number of write hits.