weed-client icon indicating copy to clipboard operation
weed-client copied to clipboard

Java client for Seaweed file system

Results 5 weed-client issues
Sort by recently updated
recently updated
newest added

Does this tool support upload large file by using weed large file handling steps? [https://github.com/chrislusf/seaweedfs/wiki/Large-File-Handling](https://github.com/chrislusf/seaweedfs/wiki/Large-File-Handling) I cannot find the method for uploading json string. thx~

i have multiple master how to use works

In [Connection.java:](https://github.com/lokra/seaweedfs-client/blob/master/src/main/java/org/lokra/seaweedfs/core/Connection.java), there are 4 places found with code `request.setHeader("Connection", "close");` This line of code disabled the keep-alive feature, so the connection will be discarded instead of pooled. I don't...

line 267 of [Connection.java:](https://github.com/lokra/seaweedfs-client/blob/master/src/main/java/org/lokra/seaweedfs/core/Connection.java) `EntityUtils.consume(entity);` this line of code will close the InputStream of reponse entity instantly, which cause the InputStream returned throw Exception when read. So you simply cannot...