- 授权协议: Apache-2.0
- 开发语言: C/C++
- 操作系统: 跨平台
- 软件首页: https://gitee.com/neeke/PHP-Druid
- 软件文档: https://gitee.com/neeke/PHP-Druid/blob/master/README.md
软件介绍
这是一个为 PHP 连接查询 Druid.IO 提供的客户端驱动服务的 PHP 扩展。
安装
Make Install PHP-Druid
$ /path/to/phpize $ ./configure --with-php-config=/path/to/php-config $ make && make install
PECL Install PHP-Druid
$ pecl install Druid
配置
Druid.ini extension=druid.so druid.base_auth_passport = "" druid.base_auth_user = "" druid.debug = 1 druid.host = "http://10.0.3.46:9082/druid/v2/" druid.tpl_path = "/data/php-druid/tpl" druid.curl_dns_cache_timeout = 1 druid.curl_connect_timeout = 3 druid.curl_timeout = 5
Demo
<?php
/**
* @author neeke@php.net
* Date: 16/12/21 下午8:38
*/
try {
$Druid_1 = Druid::getInstance();
$Druid_1->debugWitch(TRUE);
/**
* you can also use default host with druid.host in php.ini/druid.ini
*/
$aHosts = array("http://10.0.3.46:9082/druid/v2/", "http://10.0.3.46:9082/druid/v2/");
$Druid_1->setDruidHosts($aHosts);
/**
* demo 1
*
* use tpl build request json
*/
$Druid_1->setTplPath(__DIR__ . '/tpl');
$result_1 = $Druid_1->getDataByTpl('request_tpl_demo.json', array('@startTimeToEndTime@' => '["2016-12-10T14:06:00.000Z/2016-12-27T14:36:00.000Z"]'));
$Druid_2 = Druid::getInstance('druid_2_instance');
/**
* demo 2
*
* use full request json
*/
$result_2 = $Druid_2->getData(file_get_contents(__DIR__ . '/tpl/request_full_demo.json'));
var_dump($result_1, $result_2);
var_dump($Druid_1,$Druid_2);
} catch (Exception $e) {
var_dump($e->getCode(), $e->getMessage(), $Druid_1->getDebugInfo(), $Druid_2->getDebugInfo());
}
Head First Python
Paul Barry / O'Reilly Media / 2010-11-30 / USD 49.99
Are you keen to add Python to your programming skills? Learn quickly and have some fun at the same time with Head First Python. This book takes you beyond typical how-to manuals with engaging images, ......一起来看看 《Head First Python》 这本书的介绍吧!
