summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorKevin Lin <developer@kevinlin.info>2020-02-19 20:59:24 -0800
committerdormando <dormando@rydia.net>2020-03-27 11:21:33 -0700
commit4e79f166fc15583cae443d9ae09a1e673601fb7e (patch)
tree22af2a3afad3501b1e75ee7aedfecd2b9f1d35f0 /doc
parentf249724cedcab6605ca8a0769ac4b356a8124f63 (diff)
downloadmemcached-4e79f166fc15583cae443d9ae09a1e673601fb7e.tar.gz
Add: `-o ssl_session_cache`, disabled by default
Enables server-side TLS session caching.
Diffstat (limited to 'doc')
-rw-r--r--doc/protocol.txt5
-rw-r--r--doc/tls.txt2
2 files changed, 6 insertions, 1 deletions
diff --git a/doc/protocol.txt b/doc/protocol.txt
index 4de52ea..2ca031b 100644
--- a/doc/protocol.txt
+++ b/doc/protocol.txt
@@ -1634,6 +1634,11 @@ following additional statistics are available via the "stats" command.
| ssl_handshake_errors | 64u | Number of times the server has |
| | | encountered an OpenSSL error |
| | | during handshake (SSL_accept). |
+| ssl_new_sessions | 64u | When SSL session caching is |
+| | | enabled, the number of newly |
+| | | created server-side sessions. |
+| | | Available only when compiled |
+| | | with OpenSSL 1.1.1 or newer. |
| time_since_server_cert_refresh | 32u | Number of seconds that have |
| | | elapsed since the last time |
| | | certs were reloaded from disk. |
diff --git a/doc/tls.txt b/doc/tls.txt
index fef56ab..e7fe2ca 100644
--- a/doc/tls.txt
+++ b/doc/tls.txt
@@ -18,7 +18,7 @@ will use new certificates without a need of re-starting the server process.
# Multiple ports with and without TLS : by default all TCP ports are secured. Optionally we can setup
the server to secure a specific TCP port.
-Note that initial implementation does not support session resumption or renegotiation.
+Note that initial implementation does not support session renegotiation.
Design
------