我有一个RoR应用程序,每10秒刷新一次内容。这种情况持续数天,有时甚至是几周,直到Ruby解释器崩溃。我查看了development.log文件,每次发生这种情况时,最后一个条目都是:
Started GET "/de/suggestions/latest" for 212.68.121.210 at 2012-03-29 07:22:52 +0200
Processing by SuggestionsController#latest as HTML
DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1,
from 3.1 onwards you will need to install prototype-rails to continue to
use RJS templates .
(called from service at C:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138)
其他帖子说这是无害的,但在我的情况下,此消息与崩溃直接相关。我能做什么?我在Windows 7旗舰版上使用1.9.3p0 [i386-mingw32]和PostgreSQL作为我的数据库。
谢谢!