DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
- ssl session resumption can not work in some case
- sessions store in ssl internal cache
what we have done
- we have complete a selution 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.