public function SearchApiSolrConnection::getSoftCommit in Search API Solr 7
Tells whether this connection will use soft commits when comitting.
Note that this setting only has any effect when using Solr 4.x or higher.
Return value
TRUE if soft commits will be used, FALSE otherwise.
Overrides SearchApiSolrConnectionInterface::getSoftCommit
File
- includes/
solr_connection.inc, line 263
Class
- SearchApiSolrConnection
- Represents a Solr server resource.
Code
public function getSoftCommit() {
return $this->soft_commit;
}