source: extensions/Crop_Image/db/fsfs.conf @ 22933

Last change on this file since 22933 was 22933, checked in by Chillexistence, 11 years ago
File size: 2.0 KB
Line 
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
28### performance, as maintaining a database of shared representations can
29### increase commit times.  The space savings are dependent upon the size
30### of the 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### rep-sharing is enabled by default.
38# enable-rep-sharing = true
Note: See TracBrowser for help on using the repository browser.