diff options
author | Ingela Anderton Andin <[email protected]> | 2014-08-11 17:22:36 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2014-10-13 12:11:49 +0200 |
commit | a60c126e813cdef73ff6fbd4dc5414f385d2c8c6 (patch) | |
tree | 01973d8a60f24f71e7c9ba9655442990fb2cdb3d /lib/ssl/doc/src/ssl_app.xml | |
parent | ef38e1b3082675fdd7ceea051995b764864d2dc7 (diff) | |
download | otp-a60c126e813cdef73ff6fbd4dc5414f385d2c8c6.tar.gz otp-a60c126e813cdef73ff6fbd4dc5414f385d2c8c6.tar.bz2 otp-a60c126e813cdef73ff6fbd4dc5414f385d2c8c6.zip |
ssl: Separate session cache for client and server
Even though in the most common case an erlang node will not be both client
and server, it may happen (for instance when running the erlang ditribution
over TLS).
Also try to mitigate the affect of dumb clients that could cause a
very lagre session cache on the client side that can cause long delays
in the client. The server will have other means to handle a large
session table and will not do any select operations on it anyhow.
Diffstat (limited to 'lib/ssl/doc/src/ssl_app.xml')
-rw-r--r-- | lib/ssl/doc/src/ssl_app.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ssl/doc/src/ssl_app.xml b/lib/ssl/doc/src/ssl_app.xml index 43cb3934f7..c8024548b5 100644 --- a/lib/ssl/doc/src/ssl_app.xml +++ b/lib/ssl/doc/src/ssl_app.xml @@ -4,7 +4,7 @@ <appref> <header> <copyright> - <year>1999</year><year>2013</year> + <year>1999</year><year>2014</year> <holder>Ericsson AB. All Rights Reserved.</holder> </copyright> <legalnotice> @@ -75,10 +75,10 @@ </p> </item> - <tag><c><![CDATA[session_cb_init_args = list() <optional>]]></c></tag> + <tag><c><![CDATA[session_cb_init_args = proplist:proplist() <optional>]]></c></tag> <item> <p> - List of arguments to the init function in session cache + List of additional user defined arguments to the init function in session cache callback module, defaults to []. </p> </item> |