[202] | 1 | ### This file controls the configuration of the FSFS filesystem.
|
---|
| 2 |
|
---|
| 3 | [memcached-servers]
|
---|
| 4 | ### These options name memcached servers used to cache internal FSFS
|
---|
| 5 | ### data. See http://www.danga.com/memcached/ for more information on
|
---|
| 6 | ### memcached. To use memcached with FSFS, run one or more memcached
|
---|
| 7 | ### servers, and specify each of them as an option like so:
|
---|
| 8 | # first-server = 127.0.0.1:11211
|
---|
| 9 | # remote-memcached = mymemcached.corp.example.com:11212
|
---|
| 10 | ### The option name is ignored; the value is of the form HOST:PORT.
|
---|
| 11 | ### memcached servers can be shared between multiple repositories;
|
---|
| 12 | ### however, if you do this, you *must* ensure that repositories have
|
---|
| 13 | ### distinct UUIDs and paths, or else cached data from one repository
|
---|
| 14 | ### might be used by another accidentally. Note also that memcached has
|
---|
| 15 | ### no authentication for reads or writes, so you must ensure that your
|
---|
| 16 | ### memcached servers are only accessible by trusted users.
|
---|
| 17 |
|
---|
| 18 | [caches]
|
---|
| 19 | ### When a cache-related error occurs, normally Subversion ignores it
|
---|
| 20 | ### and continues, logging an error if the server is appropriately
|
---|
| 21 | ### configured (and ignoring it with file:// access). To make
|
---|
| 22 | ### Subversion never ignore cache errors, uncomment this line.
|
---|
| 23 | # fail-stop = true
|
---|
| 24 |
|
---|
| 25 | [rep-sharing]
|
---|
| 26 | ### To conserve space, the filesystem can optionally avoid storing
|
---|
| 27 | ### duplicate representations. This comes at a slight cost in performace,
|
---|
| 28 | ### as maintaining a database of shared representations can increase
|
---|
| 29 | ### commit times. The space savings are dependent upon the size of the
|
---|
| 30 | ### repository, the number of objects it contains and the amount of
|
---|
| 31 | ### duplication between them, usually a function of the branching and
|
---|
| 32 | ### merging process.
|
---|
| 33 | ###
|
---|
| 34 | ### The following parameter enables rep-sharing in the repository. It can
|
---|
| 35 | ### be switched on and off at will, but for best space-saving results
|
---|
| 36 | ### should be enabled consistently over the life of the repository.
|
---|
| 37 | # enable-rep-sharing = false
|
---|