Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

what we have done

  • we have complete a selution solution for single server.
    • disable internal session cache(set SSL_SESS_CACHE_NO_INTERNAL).
    • store session cache in a hashtable in memory.
    • hook the get session API and look up session from hashtable by session_id.
    • have a continuation to delete stale cache when hashtable full.

sigle server solution can not slove all the problem

  • when in a cluster mode and have a LB in front, session resumption can not work

what's our plan

  • use http cache in TS to cache ssl sesion

we need your advice