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