home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Micro R&D 1
/
MicroRD-CD-ROM-Vol1-1994.iso
/
disktools
/
cache
/
fcache11.lha
/
FastCache1.1
/
ARexx
/
Stats.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-08-31
|
715b
|
31 lines
/*
* Ask FastCache for information about how it is performing, and
* display a summary of this.
*/
Address 'FastCache.gvpscsi.device.0'
options results
Stats
statistics=result
parse var statistics ReadHits ReadMisses WriteHits WriteMisses
TotalReads=ReadHits+ReadMisses
TotalWrites=WriteHits+WriteMisses
say "Read Hits="ReadHits" Read Misses="ReadMisses" Total Reads="TotalReads
if (TotalReads~=0) then
say " Read hit ratio="ReadHits/TotalReads*100"%"
else
say " Read hit ratio=undefined"
say ""
say "Write Hits="WriteHits" Write Misses="WriteMisses" Total Writes="TotalWrites
if TotalWrites~=0 then
say " Write hit ratio="WriteHits/TotalWrites*100"%"
else
say " Write hit ratio=undefined"
say ""