我是 IBM Graph db 和 IBM Bluemix 的初学者。我需要使用 php 进入数据库。
尝试使用此库建立连接https://github.com/PommeVerte/gremlin-php托管在官方的Tinkerpop中,但它不起作用。
调试后才知道,每当遇到
require_once('vendor/autoload.php');
use BrightzoneGremlinDriverConnection;
$db = new Connection([
'host' => 'localhost',
'graph'=>'g',
'ssl' => [
"ssl"=>[
"verify_peer"=>false,
"verify_peer_name"=>false,
]
]
]);
$db->open();
它会停止执行。它没有显示任何错误,它只是一个空白页面。
有人可以指导我解决这个问题吗?
谢谢
@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 的
我希望这有所帮助