public class CacheFileStats
extends java.lang.Object
Modifier and Type | Method | Description |
---|---|---|
long |
getBackupSpins() |
Spins while trying to back up the file.
|
long |
getCacheHit() |
Requested pages found in the cache.
|
long |
getCacheMiss() |
Requested pages not found in the cache.
|
java.lang.String |
getFileName() |
The name of the file.
|
int |
getMap() |
Requested pages mapped into the process' address space.
|
long |
getPageCreate() |
Pages created in the cache.
|
long |
getPageIn() |
Pages read into the cache.
|
long |
getPageOut() |
Pages written from the cache to the backing file.
|
int |
getPageSize() |
Page size in bytes.
|
java.lang.String |
toString() |
For convenience, the CacheFileStats class has a toString method
that lists all the data fields.
|
public int getPageSize()
public int getMap()
public long getCacheHit()
public long getCacheMiss()
public long getPageCreate()
public long getPageIn()
public long getPageOut()
public long getBackupSpins()
public java.lang.String getFileName()
public java.lang.String toString()
toString
in class java.lang.Object
Copyright (c) 1996, 2020 Oracle and/or its affiliates. All rights reserved.