3

我正在使用 NodeJS Cassandra 驱动程序从 Cassandra timeuuid 列中检索数据。现在以缓冲区类型而不是字符串类型检索数据。我需要数据作为字符串类型

4

1 回答 1

2

虽然仍然很难理解您期望看到的内容,但这将以PostedDate更易读的格式返回:

SELECT DateOf(PostedDate) FROM facehq.timeline;

此外,随着数据规模的增长,未绑定的查询将变得有问题且速度缓慢。因此,请确保尽可能使用 WHERE 子句来限定这样的查询。

我需要像“posteddate”这样的结果:“f6ca25d0-ffa4-11e4-830a-b395dbb548cd”。

在我看来,您的问题出在您的 node.js 代码中。你是如何执行你的查询的?GitHub 项目页面上的Node.js 驱动程序文档有一个示例可能会有所帮助:

client.stream('SELECT time, val FROM temperature WHERE station_id=', ['abc'])
  .on('readable', function () {
    //readable is emitted as soon a row is received and parsed
    var row;
    while (row = this.read()) {
      console.log('time %s and value %s', row.time, row.val);
    }
  })
  .on('end', function () {
    //stream ended, there aren't any more rows
  })
  .on('error', function (err) {
    //Something went wrong: err is a response error from Cassandra
  });

DataStax 文档还有一个使用 timeUUIDs的具体示例:

client.execute('SELECT id, timeid FROM sensor', function (err, result) {
    assert.ifError(err);
    console.log(result.rows[0].timeid instanceof TimeUuid); // true
    console.log(result.rows[0].timeid instanceof Uuid); // true, it inherits from Uuid
    console.log(result.rows[0].timeid.toString());      // <- xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
    console.log(result.rows[0].timeid.getDate());       // <- Date stored in the identifier
});
于 2015-09-01T14:05:08.503 回答