比如客户端请求
http://host.com/?serverId=server1
host.com 服务端可能是运行在 nginx,或 nodejs,或 python
服务端这边获取到 serverId=server1,
服务端会根据配置文件,得到 server1 的 ip:192.168.1.11 端口:2000
怎么把这个请求转发给 ip:192.168.1.11 端口:2000
而且在高并发请求的时候,还能保持高性能?