我将把这个问题分成两部分
第1部分:
Rails如何为同一个动作提供并发请求?
Rails是否在不同的主题中提供并发请求,或者在队列中提供Rails?
第2部分:
我为什么这么问?
我做了一个非常具体的项目。现在我考虑在必要时改变应用程序架构。
前言
我有控制器与动作计算。
看起来像是这样:
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css" rel="stylesheet"/>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="container">
<div class="row">
<div class="col-md-2">
<fieldset>
<legend>
<h6>RB:</h6>
</legend>
<div class="row">
<div class="radio">
<label>
<input type="radio" name="optradio">Option 1</label>
</div>
</div>
<div class="row">
<div class="radio">
<label>
<input type="radio" name="optradio">Option 1</label>
</div>
</div>
</fieldset>
</div>
<div class="col-md-1">
<fieldset>
<legend>
<h6>CB:</h6>
</legend>
<div class="row">
<input type="checkbox" value="">
</div>
<div class="row">
<input type="checkbox" value="">
</div>
</fieldset>
</div>
</div>
</div>
calculate.rb 包含脚本,该脚本使用“ first_player_code.rb ”和“ second_player_code.rb ”文件。
该脚本将 JSON 文件作为结果发送给浏览器。
更多信息
“ first_player_code.rb ”和“ second_player_code.rb ”包含Ruby类。
在“calculate.rb”我需要这些文件和制作对象来自这些文件中的类。
我只是没有找到另一种方法(不使用文件)。
问题本身
是否有同步问题?