| Crates.io | qserve |
| lib.rs | qserve |
| version | 1.2.0 |
| created_at | 2023-11-26 03:28:25.495868+00 |
| updated_at | 2023-12-25 05:24:23.438129+00 |
| description | Quickly serve your files on your network with speed and simplicity. |
| homepage | |
| repository | https://github.com/shamxl/qserve |
| max_upload_size | |
| id | 1048779 |
| size | 56,250 |
A super fast, lightweight file-serving program written in rust
cargo install qserve
note: Qserve is in its early stage. If you encounter any errors, please create an issue.
cargo install qserve
git clone https://github.com/shamxl/qserve
cd qserve
cargo build --release
qserve --path <path>
Q: What is chunk size ?
A: Setting chunk size allows you to control the amount of data read in each iteration, balancing between memory efficiency and I/O performance. If you increase the chunk size, you will read larger portions of the file in each iteration, potentially reducing the number of I/O operations but using more memory.