Proyectos de Subversion Moodle

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 1441
Línea 38... Línea 38...
38
$string['path_help'] = 'The directory that should be used to store files for this cache store. If left blank (default) a directory will be automatically created in the moodledata directory. This can be used to point a file store towards a directory on a better performing drive (such as one in memory).';
38
$string['path_help'] = 'The directory that should be used to store files for this cache store. If left blank (default) a directory will be automatically created in the moodledata directory. This can be used to point a file store towards a directory on a better performing drive (such as one in memory).';
39
$string['pluginname'] = 'File cache';
39
$string['pluginname'] = 'File cache';
40
$string['privacy:metadata'] = 'The File cache cachestore plugin stores data briefly as part of its caching functionality but this data is regularly cleared.';
40
$string['privacy:metadata'] = 'The File cache cachestore plugin stores data briefly as part of its caching functionality but this data is regularly cleared.';
41
$string['prescan'] = 'Prescan directory';
41
$string['prescan'] = 'Prescan directory';
42
$string['prescan_help'] = 'If enabled the directory is scanned when the cache is first used and requests for files are first checked against the scan data. This can help if you have a slow file system and are finding that file operations are causing you a bottle neck.';
42
$string['prescan_help'] = 'If enabled the directory is scanned when the cache is first used and requests for files are first checked against the scan data. This can help if you have a slow file system and are finding that file operations are causing you a bottle neck.';
-
 
43
$string['serializer_igbinary'] = 'Igbinary serializer';
-
 
44
$string['serializer_php'] = 'Default PHP serializer';
43
$string['singledirectory'] = 'Single directory store';
45
$string['singledirectory'] = 'Single directory store';
44
$string['singledirectory_help'] = 'If enabled files (cached items) will be stored in a single directory rather than being broken up into multiple directories.
46
$string['singledirectory_help'] = 'If enabled files (cached items) will be stored in a single directory rather than being broken up into multiple directories.
Línea 45... Línea 47...
45
 
47
 
Línea 46... Línea 48...
46
Enabling this will speed up file interactions but comes at the cost of increased risk of hitting file system limitations.
48
Enabling this will speed up file interactions but comes at the cost of increased risk of hitting file system limitations.
Línea 47... Línea 49...
47
 
49
 
48
It is advisable to only turn this on if the following is true:
50
It is advisable to only turn this on if the following is true:
49
 
51
 
-
 
52
* If you know the number of items in the cache is going to be small enough that it won\'t cause issues on the file system you are running with.
-
 
53
* The data being cached is not expensive to generate. If it is then sticking with the default may still be the better option as it reduces the chance of issues.';
Línea 50... Línea 54...
50
* If you know the number of items in the cache is going to be small enough that it won\'t cause issues on the file system you are running with.
54
$string['task_asyncpurge'] = 'Asynchronously purge file store old cache revision directories';
51
* The data being cached is not expensive to generate. If it is then sticking with the default may still be the better option as it reduces the chance of issues.';
55
$string['useserializer'] = 'Use serializer';
52
$string['task_asyncpurge'] = 'Asynchronously purge file store old cache revision directories';
56
$string['useserializer_help'] = 'The serializer to use for serializing. The igbinary serializer, if available, can reduce the storage requirements for large caches. This is supported only when the igbinary extension is loaded.';
53
 
57