-
Notifications
You must be signed in to change notification settings - Fork 544
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into optimize_write_latency
- Loading branch information
Showing
15 changed files
with
76 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,33 @@ | ||
DEF UV_STREAM_RECV_BUF_SIZE = 256000 # 250kb | ||
cdef enum: | ||
UV_STREAM_RECV_BUF_SIZE = 256000 # 250kb | ||
|
||
DEF FLOW_CONTROL_HIGH_WATER = 64 # KiB | ||
DEF FLOW_CONTROL_HIGH_WATER_SSL_READ = 256 # KiB | ||
DEF FLOW_CONTROL_HIGH_WATER_SSL_WRITE = 512 # KiB | ||
FLOW_CONTROL_HIGH_WATER = 64 # KiB | ||
FLOW_CONTROL_HIGH_WATER_SSL_READ = 256 # KiB | ||
FLOW_CONTROL_HIGH_WATER_SSL_WRITE = 512 # KiB | ||
|
||
DEF DEFAULT_FREELIST_SIZE = 250 | ||
DEF DNS_PYADDR_TO_SOCKADDR_CACHE_SIZE = 2048 | ||
DEFAULT_FREELIST_SIZE = 250 | ||
DNS_PYADDR_TO_SOCKADDR_CACHE_SIZE = 2048 | ||
|
||
DEF DEBUG_STACK_DEPTH = 10 | ||
DEBUG_STACK_DEPTH = 10 | ||
|
||
|
||
DEF __PROCESS_DEBUG_SLEEP_AFTER_FORK = 1 | ||
__PROCESS_DEBUG_SLEEP_AFTER_FORK = 1 | ||
|
||
|
||
DEF LOG_THRESHOLD_FOR_CONNLOST_WRITES = 5 | ||
LOG_THRESHOLD_FOR_CONNLOST_WRITES = 5 | ||
SSL_READ_MAX_SIZE = 256 * 1024 | ||
|
||
|
||
# Number of seconds to wait for SSL handshake to complete | ||
# The default timeout matches that of Nginx. | ||
DEF SSL_HANDSHAKE_TIMEOUT = 60.0 | ||
# Number of seconds to wait for SSL shutdown to complete | ||
# The default timeout mimics lingering_time | ||
DEF SSL_SHUTDOWN_TIMEOUT = 30.0 | ||
DEF SSL_READ_MAX_SIZE = 256 * 1024 | ||
cdef extern from *: | ||
''' | ||
// Number of seconds to wait for SSL handshake to complete | ||
// The default timeout matches that of Nginx. | ||
#define SSL_HANDSHAKE_TIMEOUT 60.0 | ||
// Number of seconds to wait for SSL shutdown to complete | ||
// The default timeout mimics lingering_time | ||
#define SSL_SHUTDOWN_TIMEOUT 30.0 | ||
''' | ||
|
||
const float SSL_HANDSHAKE_TIMEOUT | ||
const float SSL_SHUTDOWN_TIMEOUT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters