From 55367afded10c09d2c2ec0646ad679dce4826231 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Tue, 15 Sep 2026 14:24:27 -0700 Subject: [PATCH] Update README with performance details of 'weed' binary Clarified the performance characteristics of the 'weed' binary, emphasizing O(1) complexity for read and write operations. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 82ae132a1..4ceedf240 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ SeaweedFS is a simple and highly scalable distributed file system. There are two 1. to store billions of files! 2. to serve the files fast! -One `weed` binary serves an S3 object store, a POSIX file system, and a lakehouse with S3 Tables, all over the same data. Each blob is one disk read away, capacity grows by starting another volume server, and cloud storage can be cached or tiered transparently. +One `weed` binary serves an S3 object store, a POSIX file system, and a lakehouse with S3 Tables, all over the same data. Each blob is one disk read away, capacity grows by starting another volume server, and cloud storage can be cached or tiered transparently. Both read and write operations have O(1) complexity and can run at the full speed supported by the underlying hardware. - [Download Binaries for different platforms](https://github.com/seaweedfs/seaweedfs/releases/latest) - [Wiki Documentation](https://github.com/seaweedfs/seaweedfs/wiki)