Welcome! Log In Create A New Profile

Advanced

Re: why nginx just use 511 for listen backlog

September 29, 2009 11:48AM
On Tue, Sep 29, 2009 at 11:32:32AM -0400, zhijianpeng wrote:

> I found that :
>
> #define NGX_LISTEN_BACKLOG 511
>
> and use it as the backlog of listen()
>
> ls.backlog = NGX_LISTEN_BACKLOG;
> if (listen(s, ls.backlog) == -1) {
>
> Does it mean that only 511 connection could be accept at the same time ?

No, it means that up to 511 connections can be queued in kernel listen
queue. 511 is just a safe limit for the most OSes. For FreeBSD it's -1,
i.e., value of sysctl kern.ipc.somaxconn.

> May I modify it to 1024 or higher( I am sure use it less than SOMAXCONN )

listen 80 default backlog=1024;


--
Igor Sysoev
http://sysoev.ru/en/
Subject Author Posted

why nginx just use 511 for listen backlog

zhijianpeng September 29, 2009 11:32AM

Re: why nginx just use 511 for listen backlog

Igor Sysoev September 29, 2009 11:48AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 272
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready