public function SearchApiSolrField::isCompressed in Search API Solr 7
Determines whether this field is compressed.
Return value
bool TRUE if the field is compressed, FALSE otherwise.
File
- includes/
solr_field.inc, line 254
Class
- SearchApiSolrField
- Logic around Solr field schema information.
Code
public function isCompressed() {
$this
->getSchema();
return isset($this->schema['C']);
}