0

我正在使用 Mongodb 开发 ROR 应用程序。我在 heroku 上部署应用程序,我使用的映射器是 mongoid。
这是我的 confiq.yml

production:
 # Configure available database sessions. (required)
 sessions:
# Defines the default session. (required)
default:
  # Defines the name of the default database that Mongoid can connect to.
  # (required).
  database: app17040252
  username: heroku
  password: XYZ
  # Provides the hosts the default session can connect to. Must be an array
  # of host:port pairs. (required)
  hosts:
    - dharma.mongohq.com:10069

我有几个疑问
1)我想在密码字段中知道 - 实际密码会出现还是显示 mongohq 提供的密码?
2) 我在 confiq.yml>
3) 中遗漏了任何内容吗? 3) ruby​​ 2.0.0 可以正常工作吗?

4

1 回答 1

0

1)密码字段应该是mongohq密码。当您在那里创建数据库时,您应该得到一个。

2) 配置对我来说几乎是正确的,只是缩进有点偏离。该default条目必须在sessions条目中。

3) mongoid 在 ruby​​ 2.0.0 上测试,并且在生产中一起使用没有任何问题,所以应该没问题。

于 2013-09-11T13:59:35.753 回答