我已使用此链接使用 AWS CloudFormation 模板在 Amazon EC2 上使用 Gremlin 服务器为 Titan 创建 DynamoDB 存储后端。这工作得很好,我能够得到输出。
我想使用 java 连接和访问上面创建的 Titan db,并从我的 java 程序中执行查询。这样做需要帮助。
我可以使用下面的 nodejs 代码来做到这一点:
var Gremlin = require('gremlin');
// Will open a WebSocket to ws://localhost:8182 by default
const client = Gremlin.createClient();
console.log(JSON.stringify(client));
client.execute('g.addV("FirstVertex","Value")', (err, results) => {
if (!err) {
console.log(results); // notice how results is *always* an array
}
console.log(err);
});
client.execute('g.V()', (err, results) => {
if (!err) {
console.log(results); // notice how results is *always* an array
}
});
如何使用 java websocket 做同样的事情?