SolrCacheInterface.php in Search API Solr 8.3
Same filename and directory in other branches
Namespace
Drupal\search_api_solrFile
src/SolrCacheInterface.phpView source
<?php
namespace Drupal\search_api_solr;
/**
* Provides an interface defining a SolrCache entity.
*/
interface SolrCacheInterface extends SolrConfigInterface {
/**
* Gets the environments targeted by this Solr Cache.
*
* @return string[]
* Environments.
*/
public function getEnvironments();
/**
* Gets the Solr Cache definition as nested associative array.
*
* @return array
* The Solr Cache definition as nested associative array.
*/
public function getCache();
}
Interfaces
Name | Description |
---|---|
SolrCacheInterface | Provides an interface defining a SolrCache entity. |