multithreading - Thread pooling configurability in Finagle -


let's assume i've got 2 finagle services, per below

val service1: service[http.request, http.response] = ??? val service2: service[http.request, http.response] = ??? 

and run them both against different ports

val server1 = http.serve(":9090", service1) val server2 = http.serve(":8080", service2) 
  • would requests coming these 2 servers handled different netty worker/thread pools?
  • if not, there way configure finagle handled different netty worker/thread pools?


Comments

Popular posts from this blog

neo4j - finding mutual friends in a cypher statement starting with three or more persons -

php - How to remove letter in front of the word laravel -

minify - Minimizing css files -