]> git.kaiwu.me - nginx.git/commit
SSL: single allocation in session cache on 32-bit platforms.
authorMaxim Dounin <mdounin@mdounin.ru>
Wed, 12 Oct 2022 17:14:40 +0000 (20:14 +0300)
committerMaxim Dounin <mdounin@mdounin.ru>
Wed, 12 Oct 2022 17:14:40 +0000 (20:14 +0300)
commit76876c160f6f66a1f906a74649f1242844d2b910
tree4d00e96e163193e6337b0f0a8baa00ed3b3d836e
parent5c5c449ba0ba12708d2c9d121d46426eeaf911da
SSL: single allocation in session cache on 32-bit platforms.

Given the present typical SSL session sizes, on 32-bit platforms it is
now beneficial to store all data in a single allocation, since rbtree
node + session id + ASN1 representation of a session takes 256 bytes of
shared memory (36 + 32 + 150 = about 218 bytes plus SNI server name).

Storing all data in a single allocation is beneficial for SNI names up to
about 40 characters long and makes it possible to store about 4000 sessions
in one megabyte (instead of about 3000 sessions now).  This also slightly
simplifies the code.
src/event/ngx_event_openssl.c
src/event/ngx_event_openssl.h