public function StreamingExpressionBuilder::_checkpoints_collection in Search API Solr 4.x
Same name and namespace in other branches
- 8.3 src/Utility/StreamingExpressionBuilder.php \Drupal\search_api_solr\Utility\StreamingExpressionBuilder::_checkpoints_collection()
Returns the Solr Cloud collection name for storing topic checkpoints.
Return value
string The checkpoints collection name.
2 calls to StreamingExpressionBuilder::_checkpoints_collection()
- StreamingExpressionBuilder::_topic in src/
Utility/ StreamingExpressionBuilder.php - Eases topic() expressions if there's no specific checkpoint collection.
- StreamingExpressionBuilder::_topic_all in src/
Utility/ StreamingExpressionBuilder.php - Eases topic() expressions if there's no specific checkpoint collection.
File
- src/
Utility/ StreamingExpressionBuilder.php, line 232
Class
- StreamingExpressionBuilder
- Provides methods for creating streaming expressions targeting a given index.
Namespace
Drupal\search_api_solr\UtilityCode
public function _checkpoints_collection() {
return $this->checkpointsCollection;
}