This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
coordinator=true | |
datasources=jmx | |
http-server.http.port=8080 | |
presto-metastore.db.type=h2 | |
presto-metastore.db.filename=var/db/MetaStore | |
task.max-memory=1GB | |
discovery-server.enabled=true | |
discovery.uri=http://example.net:8080 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* バイナリのダンプ。 | |
* なにげに使いそうなので | |
*/ | |
public function bin_dump($data) | |
{ | |
$binary = unpack("C*", $data ); | |
$result = ''; | |
foreach($binary as $v) | |
{ |
NewerOlder