Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はサーバーアプリケーションを持っていて、1行あります
Certificate[] certs = sslSocket.getSession().getPeerCertificates();
完了するまでに約5秒かかります。仕事を早くする方法はありますか?
ソケットでI/Oが実行されていない場合、getSession()はSSLハンドシェイクを開始します。これには時間がかかる場合があります。ピアと通信しています。ソケットでI/Oがすでに実行されている場合は、より高速に動作しますが、もちろん、コストは最初のI/O呼び出しにシフトします。