You are here

interface MemcacheStatsInterface in Memcache API and Integration 8.2

Defines the Memcache connection interface.

Hierarchy

Expanded class hierarchy of MemcacheStatsInterface

All classes that implement MemcacheStatsInterface

File

memcache_admin/src/Stats/MemcacheStatsInterface.php, line 8

Namespace

Drupal\memcache_admin\Stats
View source
interface MemcacheStatsInterface {

  /**
   * Sets an array of raw data for the memcache server.
   *
   * @param array $raw_data
   *
   * @return void
   */
  public function setRaw(array $raw_data);

  /**
   * Returns raw data from the memcache server.
   *
   * @return array
   */
  public function getRaw() : array;

  /**
   * Returns the memcache server version.
   *
   * @return string
   */
  public function getVersion() : string;

  /**
   * Returns the uptime for the memcache server.
   *
   * @return string
   */
  public function getUptime() : string;

  /**
   * Returns the PECL extension for the memcache server.
   *
   * @return string
   */
  public function getExtension() : string;

  /**
   * Returns the total connections for the memcache server.
   *
   * @return string
   */
  public function getTotalConnections() : string;

  /**
   * Returns the cache sets for the memcache server.
   *
   * @return string
   */
  public function getSets() : string;

  /**
   * Returns the cache gets for the memcache server.
   *
   * @return string
   */
  public function getGets() : string;

  /**
   * Returns the counters for the memcache server.
   *
   * @return string
   */
  public function getCounters() : string;

  /**
   * Returns the data transferred for the memcache server.
   *
   * @return string
   */
  public function getTransferred() : string;

  /**
   * Returns the connection averages for the memcache server.
   *
   * @return string
   */
  public function getConnectionAvg() : string;

  /**
   * Returns the memory available for the memcache server.
   *
   * @return string
   */
  public function getMemory() : string;

  /**
   * Returns the evictions for the memcache server.
   *
   * @return string
   */
  public function getEvictions() : string;

}

Members

Namesort descending Modifiers Type Description Overrides
MemcacheStatsInterface::getConnectionAvg public function Returns the connection averages for the memcache server. 1
MemcacheStatsInterface::getCounters public function Returns the counters for the memcache server. 1
MemcacheStatsInterface::getEvictions public function Returns the evictions for the memcache server. 1
MemcacheStatsInterface::getExtension public function Returns the PECL extension for the memcache server. 1
MemcacheStatsInterface::getGets public function Returns the cache gets for the memcache server. 1
MemcacheStatsInterface::getMemory public function Returns the memory available for the memcache server. 1
MemcacheStatsInterface::getRaw public function Returns raw data from the memcache server. 1
MemcacheStatsInterface::getSets public function Returns the cache sets for the memcache server. 1
MemcacheStatsInterface::getTotalConnections public function Returns the total connections for the memcache server. 1
MemcacheStatsInterface::getTransferred public function Returns the data transferred for the memcache server. 1
MemcacheStatsInterface::getUptime public function Returns the uptime for the memcache server. 1
MemcacheStatsInterface::getVersion public function Returns the memcache server version. 1
MemcacheStatsInterface::setRaw public function Sets an array of raw data for the memcache server. 1