$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] ASIO TCP socket scalability for large scale connections
From: Vinnie Falco (vinnie.falco_at_[hidden])
Date: 2018-12-23 00:06:16
On Sat, Dec 22, 2018 at 3:01 PM hh h via Boost <boost_at_[hidden]> wrote:
> What will be the maximum connections a single ASIO TCP
> socket server can handle?
Asio doesn't contain magic or reinvent the wheel here, `basic_socket`
is a very thin abstraction over a file handle representing a socket.
You need to look to the limits of your operating system and
configuration to know the baseline limit. And of course subtract from
that any additional per-connection resources that your application
uses.
Regards