Support useCache "prefer" setting.

This commit is contained in:
Tom Mortensen
2016-06-26 15:53:11 -07:00
parent 10bbac90cb
commit f7d8f6f5ca
+6
View File
@@ -227,6 +227,7 @@ Use cache disk:
<?=mk_option($share['useCache'], "no", "No")?>
<?=mk_option($share['useCache'], "yes", "Yes")?>
<?=mk_option($share['useCache'], "only", "Only")?>
<?=mk_option($share['useCache'], "prefer", "Prefer")?>
</select>
> Specify whether new files and subdirectories written on the share can be written onto the Cache disk/pool.
@@ -240,6 +241,11 @@ Use cache disk:
>
> **Only** indicates that all new files and subdirectories must be writen to the Cache disk/pool. If there
> is insufficient free space on the Cache disk/pool, *create* operations will fail with *out of space* status.
>
> **Prefer** indicates that all new files and subdirectories should be written to the Cache disk/pool, provided
> enough free space exists on the Cache disk/pool. If there is insufficant space on the Cache disk/pool, then
> new files and directories are created on the array. When the *mover* is invoked, files and subdirectories are
> transfered off the array and onto Cache disk/pool.
<?endif;?>