Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 Rails 深入研究 RethinkDB,并按照以下步骤操作:https ://rethinkdb.com/docs/rails/
但是,如何为 RethinkDB 配置数据库适配器?
从我阅读的文档中:
我们将使用 NoBrainer——一个 RethinkDB ORM,它几乎是 ActiveRecord 的直接替代品。
这意味着您将替换 ActiveRecord,因此配置不会发生在 database.yml 中,而是 ActiveRecord 配置文件。
查看NoBrainer文档以了解数据库的配置方式。具体来说,此页面告诉您如何配置它。有一个特定的设置称为
config.rethinkdb_urls = [config.default_rethinkdb_url]
您在其中指定数据库连接字符串。