Node.js
カサンドラ統合
サーチ…
こんにちは世界
Cassandraにアクセスするには、DataStaxからcassandra-driver
モジュールを使用できます。すべての機能をサポートしており、簡単に設定できます。
const cassandra = require("cassandra-driver");
const clientOptions = {
contactPoints: ["host1", "host2"],
keyspace: "test"
};
const client = new cassandra.Client(clientOptions);
const query = "SELECT hello FROM world WHERE name = ?";
client.execute(query, ["John"], (err, results) => {
if (err) {
return console.error(err);
}
console.log(results.rows);
});
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow