2.2.15 INETA_CACHE_STATISTICS

 The INETA_CACHE_STATISTICS structure contains statistics for the Internet protocol server's caches.<6>

This type is declared as follows:

 typedef struct _INETA_CACHE_STATISTICS {
   DWORD FilesCached;
   DWORD TotalFilesCached;
   DWORD FileHits;
   DWORD FileMisses;
   DWORD FileFlushes;
   DWORDLONG CurrentFileCacheSize;
   DWORDLONG MaximumFileCacheSize;
   DWORD FlushedEntries;
   DWORD TotalFlushed;
   DWORD URICached;
   DWORD TotalURICached;
   DWORD URIHits;
   DWORD URIMisses;
   DWORD URIFlushes;
   DWORD TotalURIFlushed;
   DWORD BlobCached;
   DWORD TotalBlobCached;
   DWORD BlobHits;
   DWORD BlobMisses;
   DWORD BlobFlushes;
   DWORD TotalBlobFlushed;
 } INETA_CACHE_STATISTICS,
  *LPINETA_CACHE_STATISTICS;

FilesCached: The current number of files whose content is in the Internet protocol server file cache.

TotalFilesCached: The total number of files whose content has been cached since Internet protocol server startup.

FileHits: The number of successful lookups in the Internet protocol server's file cache.

FileMisses: The number of unsuccessful lookups in the Internet protocol server's file cache.

FileFlushes: The number of file cache flushes since Internet protocol server startup.

CurrentFileCacheSize: The current number of bytes used for the Internet protocol server's file cache.

MaximumFileCacheSize: The maximum number of bytes used for the Internet protocol server's file cache.

FlushedEntries: The number of files that are marked for removal from the Internet protocol server cache after the current transfers are complete.

TotalFlushed: The number of files removed from the cache since Internet protocol server startup.

URICached: The number of URI information blocks currently cached by the Internet protocol server.

TotalURICached: The total number of URI information blocks ever added to the cache for the Internet protocol server.

URIHits: The number of successful lookups in the Internet protocol server's URI cache.

URIMisses: The number of unsuccessful lookups in the Internet protocol server's URI cache.

URIFlushes: The number of URI cache flushes since Internet protocol server startup.

TotalURIFlushed: The total number of URI information blocks that have been removed from the cache since Internet protocol server startup.

BlobCached: The number of BLOB information blocks currently cached by the Internet protocol server.

TotalBlobCached: The total number of BLOB information blocks ever added to the Internet protocol server's cache.

BlobHits: The number of successful lookups in the Internet protocol server's BLOB cache.

BlobMisses: The number of unsuccessful lookups in the Internet protocol server's BLOB cache.

BlobFlushes: The number of BLOB cache flushes since Internet protocol server startup.

TotalBlobFlushed: The total number of BLOB information blocks that have been removed from the cache since Internet protocol server startup.