Re: [users@httpd] Using redis for caching Apache requests

2018-11-26 Thread William A Rowe Jr
You will have to go out of your way to disable TLS tickets. In the course of normal operations, you won't see many cached TLS sessions at all, because the ticket is returned to the client, and the client re-presents that ticket to reestablish the session; no session caching required. http://httpd.

[users@httpd] Using redis for caching Apache requests

2018-11-23 Thread Ananya Dey
Hi, I am trying to cache the requests coming on my Apache web server using the mod_socache_redis module. After loading the module, I am sending a request from Apache to my redis server in the following format- SSLSessionCache redis://localhost:4321 4321 is the port on which the redis server has st