我在开发环境中使用ajax为同一个控制器调用两个不同的操作。 在一个操作中,我正在一个非常缓慢的过程中更新数据库。 在另一个动作上,我想让百分比结束更新进度条。 我可以看到两者都在执行, 问题是第二个动作是等待第一个动作完成自己执行,它应该每秒执行一次以获得实际的百分比。 rails可以并行执行两个动作吗?还是Webrick问题?
$(document).ready(function() {
$(':button').click(function(){
var formData = new FormData($('form')[0]);
$.ajax({
url: '/quotes/upload', //Server script to process data
type: 'POST',
//Ajax events
beforeSend: progress,
success: completeHandler,
error: function(ts) { alert(ts.responseText) },
// Form data
data: formData,
//Options to tell jQuery not to process data or worry about content-type.
cache: false,
contentType: false,
processData: false
});
});
});
function progress() {
$.ajax({
url: '/quotes/status.json',
dataType: "JSON"
}).success(function (percentual) {
if (percentual >= '95') {
location.reload();
} else {
var $bar = $('.bar');
$bar.width(percentual+"%");
setInterval(progress,800);
}
});
}
这是控制台打印出来的:
Started GET "/quotes/status.json" for 127.0.0.1 at 2014-09-21 10:23:38 -0300
Processing by QuotesController#status as JSON
percentual => 0 Completed 200 OK in 4ms (Views: 0.6ms | ActiveRecord: 0.0ms)
Started POST "/quotes/upload" for 127.0.0.1 at 2014-09-21 10:23:38 -0300
Processing by QuotesController#upload as */*
Parameters: {"quotes"=>#<ActionDispatch::Http::UploadedFile:0x00000001b980b0 @tempfile=#<Tempfile:/tmp/RackMultipart20140921-5849-otvxky>, @original_filename="HIST_XXX.TXT", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"quotes\"; filename=\"HIST_XXX.TXT\"\r\nContent-Type: text/plain\r\n">}
Rendered quotes/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 10456ms (Views: 170.3ms | ActiveRecord: 0.0ms)
Started GET "/quotes/status.json" for 127.0.0.1 at 2014-09-21 10:23:49 -0300
Processing by QuotesController#status as JSON
percentual => 100 Completed 200 OK in 3ms (Views: 0.4ms | ActiveRecord: 0.0ms)
正如我在控制台上看到的那样,它只是在上传之前进行第一次通话,然后进行上传,然后在完成第二次通话后进行状态
答案 0 :(得分:0)
你是对的 - Webrick一次只会处理一个请求。也许给Thin,Puma或Unicorn一个 - 他们都处理并发请求。
注意:请注意,使用SQLite可能会出现类似的并发问题(尤其是涉及写入时!)切换到PostgeSQL或MySQL。
使用Thin:
的Gemfile
gem 'thin'
当然......
bundle install
然后启动服务器
thin start
使用Puma:
的Gemfile
gem 'puma'
当然......
bundle install
启动服务器
rails s puma
使用Unicorn:
的Gemfile
gem 'unicorn'
当然......
bundle install
启动服务器
unicorn_rails
答案 1 :(得分:0)
感谢您的提示, 我找到了解决方案: 把它放在您的development.rb文件中:
config.middleware.delete Rack::Lock
你还必须改变Webrick。 它适用于Puma。