Try to remove the additional HEAD query we are making on search:
<?php
if (!$this->checkClient() || !$this->elasticsearchClient->indices()->existsType($params)) {
return $search_result;
}
?>
Try to remove the additional HEAD query we are making on search:
<?php
if (!$this->checkClient() || !$this->elasticsearchClient->indices()->existsType($params)) {
return $search_result;
}
?>
Comments
Comment #1
skek commentedSome discussions about this issue has been made in issue: https://drupal.org/node/2287711
Comment #2
skek commentedComment #4
skek commentedThe head request has been removed from search function.