使用rethinkdb的时间序列数据库

时间:2014-03-07 17:21:18

标签: time-series rethinkdb

我目前正在评估rethinkdb,以便将它与时间序列数据库一起用于我的图表需求。

我正在寻找现有的教程和片段,如果它们甚至存在于rethinkdb中。 (我已经知道mongodb,redis,tempodb和cassandra有类似的资源)。

1 个答案:

答案 0 :(得分:2)

您在RethinkDB网站上有一些资源:

查询语言的一般介绍 - http://www.rethinkdb.com/docs/introduction-to-reql/ 食谱(可能是你要找的) - http://www.rethinkdb.com/docs/cookbook/javascript/ API文档(这里有一些有用的示例) - http://www.rethinkdb.com/api/javascript/

也有一些ffull应用程序 - http://www.rethinkdb.com/docs/examples/

我不知道时间序列的特定片段。 但是你只需要在你的时间系列数据上创建一个索引,并使用orderBy({index: "time"})(类似的东西)。

相关问题