解决RedMine访问速度慢的问题

1.  替换其自带的服务器webrick 为mongrel,方法:

    在ruby的DOS环境下输入: 
     gem install mongrel

2. 更改%redmine安装路径%\config\environments目录下production.rb文件:

config.cache_classes = false

改为:

config.cache_classes = true

3. 运行

ruby script/server -e production

浏览器中输入http://localhost:3000进入系统主页面,是不是感觉快了很多.

你可能感兴趣的:(redmine)