Prepends a cache backend to the cache chain.
CacheBackendInterface $backend: The backend to be prepended to the cache chain.
Drupal\Core\Cache\BackendChain The called object.
public function prependBackend(CacheBackendInterface $backend) {
array_unshift($this->backends, $backend);
return $this;
}