与Rethinkdb最相似的nosql数据库

The nosql database most similar to Rethinkdb

我需要在rethinkdb 中做一个项目。但是,它不能在 windows 中工作。是否有一个数据库被认为是最相似的,以便我可以学习绳索,然后在 unix 环境中开始我的项目。我听说这可能是 mongodb 或 couchdb。但是,我想发表一些意见 谢谢

有很多不同的方法可以解决这个问题。

在 Windows

中安装 RethinkDB

首先,您实际上可以让 RethinkDB 在 Windows 上运行。您只需要使用虚拟机即可。 Here is a tutorial 关于如何在 Windows 上安装 RethinkDB。也就是说,在 Windows 上获得 运行 并不像在 UNIX 环境中那么简单。

类似的数据库

什么样的 NoSQL 数据库与 RethinkDB 更相似取决于您正在寻找 RethinkDB 的哪些功能。

如果您正在寻找要在服务器中使用的 NoSQL JSON 文档存储,并且具有类似的 API、MongoDB is probably the closes thing to RethinkDB. That being said, there are some pretty big differences between MongoDB and RethinkDB. I would take a look at an objective look at the differences and a more opinionated look at the differences.

如果您正在寻找可以提供 RethinkDB 类似实时功能的东西,您可以看看 FireBase。 FireBase 显然不是 NoSQL 数据库,但它提供了 RethinkDB 的一些实时功能。

CouchDB 可能也是一个不错的选择,因为它也是一个开源的 NoSQL 数据库,并且还支持 change notifications, which are a way to pull changes from a particular table (Different from changefeed's 推送模型)。

Windows

的原生 RethinkDB

如果您有兴趣跟踪 Windows 对 Windows 的支持,您应该看看这个 GitHub issue