我有一个简单的rails应用程序,可以向10个不同的提供者发送API请求。
程序:
使用Heroku(免费版),你能告诉我什么是减少Rails 4响应时间的最佳选择(使用线程,工人等......)?感谢非常感谢。
答案 0 :(得分:1)
我已经通过使用简单的rails线程解决了这个问题。
threads << Thread.new{something to be done...}
threads << Thread.new{something to be done...}
threads << Thread.new{something to be done...}
threads.map &:join // Wait for all threads to be completed and then continue