xoscan / zincsearch-es
PHP Client for Zincsearch Reference Elasticsearch API
dev-main
2024-03-22 11:49 UTC
Requires
- php: >=7.0
- ext-json: >=1.3.7
- guzzlehttp/ringphp: ~1.0
- psr/log: ~1.0
This package is auto-updated.
Last update: 2025-03-22 14:21:05 UTC
README
例子
use ZincsearchEs\ClientBuilder;
$client = ClientBuilder::create()
->setHosts(['localhost:4080'])
->setApiKey("you-zincsearch-apikey")
->build();
$hosts = array("localhost:4080");
$apikey=""you-zincsearch-apikey";
$esClient = ClientBuilder::create()->setHosts($hosts)->setApiKey($apikey)->build();
$market_data = [
"id"=>"101",
"base-currency"=>"btc",
"quote-currency"=>"usdt",
"period"=>"5min"
];
$type = $market_data['base-currency'] . '.' . $market_data['quote-currency'] . '.' . $market_data['period'];
$params = [
'index' => 'market.kline',
'type' => '_doc',
'id' => $type . '.' . $market_data['id'],
'body' => $market_data,
];
$response = $client->index($params);
print_r($response);