public function MemcacheStatsObject::getEvictions in Memcache API and Integration 8.2
@inheritDoc
Overrides MemcacheStatsInterface::getEvictions
1 method overrides MemcacheStatsObject::getEvictions()
- McrouterStatsObject::getEvictions in memcache_admin/
src/ Stats/ McrouterStatsObject.php - @inheritDoc
File
- memcache_admin/
src/ Stats/ MemcacheStatsObject.php, line 260
Class
- MemcacheStatsObject
- Class MemcacheStats.
Namespace
Drupal\memcache_admin\StatsCode
public function getEvictions() : string {
return isset($this->stats['evictions']) ? number_format($this->stats['evictions']) : self::NA;
}