Skip to content

Instantly share code, notes, and snippets.

@vc27
Last active August 29, 2015 14:11
Show Gist options
  • Save vc27/7578c93312a4ae25c6dc to your computer and use it in GitHub Desktop.
Save vc27/7578c93312a4ae25c6dc to your computer and use it in GitHub Desktop.
_index_a_document
// http://www.elasticsearch.org/guide/en/elasticsearch/client/php-api/current/_quickstart.html#_index_a_document
require_once( 'lib/initiate.php' );
$params = array();
$params['body'] = array('testField' => 'abc');
$params['index'] = 'properties';
$params['type'] = 'property';
$params['id'] = '1234567890';
$es->client->index( $params );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment