使用 Yaml 进行 MongoMapper 配置
我有我的 Yaml 配置文件 mongo.yml
:
development:
adapter: mongodb
database: fhsclock_development
host: localhost
port: nil
test:
adapter: mongodb
database: fhsclock_test
host: localhost
port: nil
production:
adapter: mongodb
database: fhsclock
hosts:
- - localhost
- nil
- - staff.mongohq.com
- 10015
如何使用此文件进行配置并与 MongoMapper 连接?
I have my Yaml configuration file, mongo.yml
:
development:
adapter: mongodb
database: fhsclock_development
host: localhost
port: nil
test:
adapter: mongodb
database: fhsclock_test
host: localhost
port: nil
production:
adapter: mongodb
database: fhsclock
hosts:
- - localhost
- nil
- - staff.mongohq.com
- 10015
How do I use this file for configuration and connection with MongoMapper?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您正在使用 Rails 并且该文件位于 config/mongo.yml,MongoMapper 将仅使用该文件。如果您不在 Rails 上,则可以改编 此代码来自源头:
此外,“适配器”你的文件是无关的。 (请参阅入门文档)。来自
rails g mongo_mapper:config
的mongo.yml
如下所示:MongoMapper will just use the file if it's you're using Rails and the file is at
config/mongo.yml
. If you're not on Rails, you can adapt this code from the source:Also, the "adapter" in your file is extraneous. (See the Getting Started documentation). A
mongo.yml
fromrails g mongo_mapper:config
looks like: