> -----Original Message-----
> From: Camilo S. Tsumanuma [mailto:[email protected]]
> Sent: vrijdag 21 juni 2013 16:22
> To: [email protected]
> Subject: [TSVN and svn 1.8.0] Cannot Digest Authenticate.
>
> Hi Dear Subversion Users Forum,
>
> I compiled subversion 1.8.0 in CentOS 6.4 using
> http://comments.gmane.org/gmane.comp.version-control.subvers
> ion.user/113594
> as guideline.
>
> I just used my own previous Apache Server configuration of
> Digest Authentication for WebDav SVN but it failed
> like described in Discussion Topic of TortoiseSVN Users Forum
> http://tortoisesvn.tigris.org/ds/viewMessage.do?dsForumId=4061&dsMess
> ageId=3058687.
What setting does your apache use for KeepAlive?
Currently serf doesn't support digest authentication with KeepAlive off (which
will be fixed with Serf 1.3.0, which should be available before Subversion
1.8.1)
Subversion performs much better to servers with keep alive enabled and the
difference will be even better if you allow a huge number of requests on one
connection. (The Subversion 1.7 release notes recommend a maximum setting of at
least 1000)
Without keep alives a new http or https connection has to be setup for every
request, while with keep alives a single connection can not only handle
multiple requests after another, but also multiple requests at the same time.
Bert