1. 13 Jan, 2015 1 commit
  2. 12 Jan, 2015 3 commits
    • Tatsuhiro Tsujikawa's avatar
      nghttpx: Add --tls-ctx-per-worker option · 1e4f8f27
      Tatsuhiro Tsujikawa authored
      When same SSL_CTX is used by multiple thread simultaneously we have to
      setup some number of mutex locks for it.  We could not check how this
      locking affects scalability since we have 4 cores at best in our
      development machine.  Good side of sharing SSL_CTX across threads is
      we can share session ID pool.
      
      If --tls-ctx-per-worker is enabled, SSL_CTX is created per thread
      basis and we can eliminate mutex locks.  The downside is session ID is
      no longer shared, which means if session ID generated by one thread
      cannot be acceptable by another thread.  But we have now session
      ticket enabled and its keys are shared by all threads.
      1e4f8f27
    • Tatsuhiro Tsujikawa's avatar
      nghttpx: Add doc and clean up · 0ea041e8
      Tatsuhiro Tsujikawa authored
      0ea041e8
    • Tatsuhiro Tsujikawa's avatar
      nghttpx: Fix error message · e048deb6
      Tatsuhiro Tsujikawa authored
      e048deb6
  3. 11 Jan, 2015 7 commits
  4. 10 Jan, 2015 13 commits
  5. 09 Jan, 2015 7 commits
  6. 08 Jan, 2015 9 commits