Re: HTTP and MPM support

2019-01-29 Thread John Dunlap
We use Redis to share information between mod_perl processes(including our HTTP sessions). This has the added advantage of allowing all servers in a cluster to share the same session/cache. On Tue, Jan 29, 2019 at 7:38 PM Narbey Derbekyan wrote: > We've used Cache::FastMmap at my work to share d

Re: HTTP and MPM support

2019-01-29 Thread Narbey Derbekyan
We've used Cache::FastMmap at my work to share data between mod_perl processes. We did not consider using threads because they're not lightweight. What the rules you guys are following when it comes to using threads? On Tue, Jan 29, 2019 at 9:48 AM John Deighan wrote: > We also use threads with

Re: HTTP and MPM support

2019-01-29 Thread John Deighan
We also use threads without any problem in production. Main use is sharing caches so that multiple mod_perl interpreters don'teach store the same cached information. Following a few simple and documented rules, we've had no issues with using threads. On Mon, Jan 28, 2019 at 6:18 PM Mark Blackman