The recording of the cache statistic `swapCount` is guarded in `JFactory`: ```java if (SWAPCOUNT) { cachestats.swapCount++; } ``` The constant `SWAPCOUNT` is hard-coded in `JFactory` to be `false`. Therefore, the `cachestats` will never record this statistic.
The recording of the cache statistic
swapCountis guarded inJFactory:The constant
SWAPCOUNTis hard-coded inJFactoryto befalse. Therefore, thecachestatswill never record this statistic.