mirror of
https://github.com/haiwen/seafile-admin-docs.git
synced 2025-12-26 02:32:50 +00:00
Update seaf-fuse documentation for block cache options
Some checks are pending
Deploy CI - 13.0 / deploy (push) Waiting to run
Some checks are pending
Deploy CI - 13.0 / deploy (push) Waiting to run
Clarify block cache functionality and options in seaf-fuse documentation.
This commit is contained in:
parent
d5a6b90135
commit
03a196b9fa
|
|
@ -71,13 +71,21 @@ mkdir -p /data/seafile-fuse
|
|||
./seaf-fuse.sh start /data/seafile-fuse
|
||||
```
|
||||
|
||||
##### Stop seaf-fuse
|
||||
|
||||
```
|
||||
./seaf-fuse.sh stop
|
||||
```
|
||||
|
||||
## Start options
|
||||
|
||||
seaf-fuse supports standard mount options for FUSE. For example, you can specify ownership for the mounted folder:
|
||||
|
||||
```
|
||||
./seaf-fuse.sh start -o uid=<uid> /data/seafile-fuse
|
||||
```
|
||||
|
||||
The fuse enables the block cache function by default to cache block objects, thereby reducing access to backend storage, but this function will occupy local disk space. Since Seafile-pro-10.0.0, you can disable block cache by adding following options:
|
||||
In Pro edition, seaf-fuse enables the block cache function by default to cache block objects when object storage backend is used, thereby reducing access to backend storage, but this function will occupy local disk space. Since Seafile-pro-10.0.0, you can disable block cache by adding following options:
|
||||
|
||||
```
|
||||
./seaf-fuse.sh start --disable-block-cache /data/seafile-fuse
|
||||
|
|
@ -85,14 +93,7 @@ The fuse enables the block cache function by default to cache block objects, the
|
|||
|
||||
You can find the complete list of supported options in `man fuse`.
|
||||
|
||||
|
||||
##### Stop seaf-fuse
|
||||
|
||||
```
|
||||
./seaf-fuse.sh stop
|
||||
```
|
||||
|
||||
### Contents of the mounted folder
|
||||
## Contents of the mounted folder
|
||||
|
||||
##### The top level folder
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue