jruby 将 jvm 参数传递给 rake 任务
如何将 Xmx 等 jvm 参数传递给 jruby 中的 rake 任务? 我正在使用 rvm 并运行 rake 任务“rake db:migrate”。
谢谢!
How do i pass jvm arguments like Xmx to a rake task in jruby?
Am using rvm and running the rake task "rake db:migrate".
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
而不是输入整个路径,如果 jruby 已经是您正在使用的 Ruby(例如,使用 rvm),这样只需输入
rake
就会使用 jruby,您可以使用双破折号来发送jvm 的参数。示例:
bundle exec rake -- -J-Xmx1024m
(如果您使用的是捆绑程序)rake -- -J-Xmx1024m
Rather that put the entire path, if jruby is already the Ruby you're using (for example, with rvm) such that just typing
rake
would be using jruby, you can use a double dash to send the arguments to the jvm.Examples:
bundle exec rake -- -J-Xmx1024m
(if you're using bundler)rake -- -J-Xmx1024m
找到了!
Found it!