1

我是 IBM Graph db 和 IBM Bluemix 的初学者。我需要使用 php 进入数据库。

已尝试使用托管在官方 tinkerpop 中的此库 https://github.com/PommeVerte/gremlin-php进行连接 ,但它不起作用。

经过调试才知道,每当遇到

require_once('vendor/autoload.php'); 
use Brightzone\GremlinDriver\Connection;

$db = new Connection([
'host' => 'localhost',
'graph'=>'g',
'ssl' => [
            "ssl"=>[
                    "verify_peer"=>false,
                    "verify_peer_name"=>false,
            ]
        ]
]);

$db->open(); 

它停止执行。它没有显示任何错误,它只是一个空页面。

有人可以指导我解决这个问题吗?

谢谢

4

1 回答 1

4

@Radhika,尽管 IBM Graph 支持 Tinkerpop 3,但它不会让您直接访问 gremlin 服务器,因为它是一个多租户托管服务。话虽如此,连接到 IBM Graph 就像调用 HTTP API 一样简单。例如,您可以使用 cURL 来做到这一点http://codular.com/curl-with-php。完整的 API 文档在这里https://ibm-graph-docs.ng.bluemix.net/api.html

有示例代码,还没有 php,就在这里https://ibm-graph-docs.ng.bluemix.net/examples.html#node.js。希望我们会尽快添加 php 示例。

所以前往 bluemix.net,转到目录并查找 IBM Graph。创建一个 IBM Graph 实例并记下凭证。

{
  apiURL:""
  username:""
  password:""
}

使用这些凭据调用 http API

我希望这会有所帮助

于 2017-01-04T13:47:04.830 回答