From b9f2e5e554df9168b9ed426422604072bcfb0af5 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Mon, 8 Feb 2021 01:53:32 -0800 Subject: [PATCH] Updated SeaweedFS Java Client (markdown) --- SeaweedFS-Java-Client.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/SeaweedFS-Java-Client.md b/SeaweedFS-Java-Client.md index 24bb2ed..19b65f8 100644 --- a/SeaweedFS-Java-Client.md +++ b/SeaweedFS-Java-Client.md @@ -6,8 +6,11 @@ https://github.com/chrislusf/seaweedfs/tree/master/other/java/examples/src/main/ ## Features +Implemented APIs for file system storage. The blob storage APIs is not included. + * **Efficient** read and write directly to the volume servers, and only use filer servers for meta data. If you use http to read or write directly via filer, the data still needs to go through filer, which is less efficient. * **Monitor Filesystem Events** You can watch all meta data changes recursively under any folder. Common `inotify` only support watch for events under one folder, and not recursively. +* **Read Ahead** When reading large files and processing the current chunk, the next chunk will be pre-fetched. ## Read File