On 07.07.2017 12:10, Paul Hammant wrote: > ~/.subversion/servers contains a line that's tunable, right: > > # http-compression = no > > And per comment, tack on: > > --config-option=servers:global:http-compression=no . > > I'll report back the results. > > > How is Apache and its modules organized? As separate processes - with > TCP/IP between each? > If yes, is that interconnect loopback Unix domain sockets?
No, Apache modules are loadable shared libs. Whether these are all in the same process or not depends on which MPM module is used. Data transfer between modules is in-memory, AFAIK. -- Brane