作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在BuildConfig.groovy中使用grails.project.fork时,forkReserve属性会做什么,在什么情况下需要修改?
默认grails 2.4.5 BuildConfig.groovy
grails.project.fork = [
// configure settings for compilation JVM, note that if you alter the Groovy version forked compilation is required
// compile: [maxMemory: 256, minMemory: 64, debug: false, maxPerm: 256, daemon:true],
// configure settings for the test-app JVM, uses the daemon by default
test: [maxMemory: 768, minMemory: 64, debug: false, maxPerm: 256, daemon:true],
// configure settings for the run-app JVM
run: [maxMemory: 768, minMemory: 64, debug: false, maxPerm: 256, forkReserve:false],
// configure settings for the run-war JVM
war: [maxMemory: 768, minMemory: 64, debug: false, maxPerm: 256, forkReserve:false],
// configure settings for the Console UI JVM
console: [maxMemory: 768, minMemory: 64, debug: false, maxPerm: 256]
]
grails.project.fork = [
test: [maxMemory: 768, minMemory: 64, debug: false, maxPerm: 256, daemon:true], // configure settings for the test-app JVM
run: [maxMemory: 768, minMemory: 64, debug: false, maxPerm: 256], // configure settings for the run-app JVM
war: [maxMemory: 768, minMemory: 64, debug: false, maxPerm: 256], // configure settings for the run-war JVM
console: [maxMemory: 768, minMemory: 64, debug: false, maxPerm: 256]// configure settings for the Console UI JVM
]
最佳答案
forkReserve
设置将在后台启动另一个处于等待状态的“保留” JVM。然后,当您重新启动应用程序时,将使用该空闲的JVM来运行该应用程序,从而避免了从新启动新JVM的开销。
换句话说,它为应用程序重新启动的启动时间提供了一个小的优化,您可能想要也可能不想利用它。
关于grails - 在BuildConfig.groovy中使用grails.project.fork时, “forkReserve”属性会做什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39297253/
在BuildConfig.groovy中使用grails.project.fork时,forkReserve属性会做什么,在什么情况下需要修改? 默认grails 2.4.5 BuildConfig.
我是一名优秀的程序员,十分优秀!