jazzdotdev / jazz

The Scripting Engine that Combines Speed, Safety, and Simplicity
Apache License 2.0
146 stars 11 forks source link

switch web-server handler's actor layout to use tokio threadpool #165

Open naturallymitchell opened 5 years ago

naturallymitchell commented 5 years ago

currently we have either per request actors which is incorrect and mostly fails under heavy load, or single-actor which process requests sequentially

best documentation available comes from Qitta - Web Application Server by Rust with actix-web

naturallymitchell commented 5 years ago

see also #247 for concurrency within handlers, but for paralleliztion, we need #74 and this