devsisters / goquic

QUIC support for Go
http://devsisters.github.io/goquic/
BSD 3-Clause "New" or "Revised" License
942 stars 100 forks source link

Does goquic support multiple threads/processes on server side? #57

Open caozhihua12 opened 6 years ago

caozhihua12 commented 6 years ago

If goquic support multiple threads/processes, is the connection id table is global on server side? If 2 clients use same connection id, how does the server identify it? Also if thread1 process part of a http request, how does server guarantee the remaining request also is delivered to the same thread(thread1)? 

serialx commented 6 years ago

Normally one should deploy with DNS LB. Or with an LB that supports session stickiness.