You are here

public function SearchApiAcquiaSearchConnection::setDerivedKey in Acquia Search for Search API 7.2

Sets the derived key used to HMAC hash the search request.

Parameters

string $derived_key: The derived key.

File

includes/v2/SearchApiAcquiaSearchConnection.php, line 43

Class

SearchApiAcquiaSearchConnection
Starting point for the Solr API. Represents a Solr server resource and has methods for pinging, adding, deleting, committing, optimizing and searching.

Code

public function setDerivedKey($derived_key) {
  $this->derivedKey = $derived_key;
}