Exemplo n.º 1
0
 public function testRadosConnect()
 {
     $cluster = rados_create(getenv('id'));
     $this->assertNotNull($cluster);
     rados_conf_set($cluster, "mon_host", getenv('mon_host'));
     rados_conf_set($cluster, "key", getenv('key'));
     $this->assertTrue(rados_connect($cluster));
     return $cluster;
 }
Exemplo n.º 2
0
<?php

$rados = rados_create();
rados_conf_set($rados, 'mon addr', '1.2.3.4');
rados_conf_set($rados, 'keyring', '/path/to/keyring.bin');
rados_connect($rados);
print_r(rados_pool_list($rados));
rados_shutdown($rados);