Node.js
Integrazione di Cassandra
Ricerca…
Ciao mondo
Per l'accesso cassandra-driver
modulo Cassandra cassandra-driver
Cassandra da DataStax può essere utilizzato. Supporta tutte le funzionalità e può essere facilmente configurato.
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
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow