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.
mongoid 如何为测试和生产环境创建索引?我是说
rake db:mongoid:create_indexes => environment
如何设置环境?
我使用 mongoid 2.4.9 和 rails 3.2.7。
与 Rails 的其他 rake 任务一样,只需指定 RAILS_ENV 即可在命令行上进行 rake,例如,
rake db:mongoid:create_indexes RAILS_ENV=test
您可以在另一个窗口中跟踪您的日志文件以观察它的发生。
tail -f log/*.log