用法:
SSLContext.session_stats()
獲取有關此上下文創建或管理的 SSL 會話的統計信息。返回一個字典,將每個piece of information 的名稱映射到它們的數值。例如,這是自創建上下文以來會話緩存中的命中和未命中總數:
>>> stats = context.session_stats() >>> stats['hits'], stats['misses'] (0, 0)
相關用法
- Python ssl.SSLContext.check_hostname用法及代碼示例
- Python ssl.SSLContext.get_ciphers用法及代碼示例
- Python ssl.SSLSocket.getpeercert用法及代碼示例
- Python ssl.match_hostname用法及代碼示例
- Python ssl.OPENSSL_VERSION_NUMBER用法及代碼示例
- Python ssl.enum_certificates用法及代碼示例
- Python ssl.cert_time_to_seconds用法及代碼示例
- Python sklearn.cluster.MiniBatchKMeans用法及代碼示例
- Python scipy.ndimage.binary_opening用法及代碼示例
- Python scipy.signal.windows.tukey用法及代碼示例
- Python scipy.stats.mood用法及代碼示例
- Python str.isidentifier用法及代碼示例
- Python sklearn.metrics.fbeta_score用法及代碼示例
- Python scipy.fft.ihfftn用法及代碼示例
- Python scipy.stats.normaltest用法及代碼示例
- Python scipy.ndimage.convolve1d用法及代碼示例
- Python scipy.stats.arcsine用法及代碼示例
- Python scipy.interpolate.UnivariateSpline.antiderivative用法及代碼示例
- Python scipy.linalg.hadamard用法及代碼示例
- Python socket.create_server用法及代碼示例
注:本文由純淨天空篩選整理自python.org大神的英文原創作品 ssl.SSLContext.session_stats。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。