You are here

public function DatabaseBackend::getMaxRows in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Cache/DatabaseBackend.php \Drupal\Core\Cache\DatabaseBackend::getMaxRows()
  2. 9 core/lib/Drupal/Core/Cache/DatabaseBackend.php \Drupal\Core\Cache\DatabaseBackend::getMaxRows()

The maximum number of rows that this cache bin table is allowed to store.

Return value

int

File

core/lib/Drupal/Core/Cache/DatabaseBackend.php, line 544

Class

DatabaseBackend
Defines a default cache implementation.

Namespace

Drupal\Core\Cache

Code

public function getMaxRows() {
  return $this->maxRows;
}