選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

README.md 860 B

1234567891011121314151617181920212223242526272829
  1. # queuectl
  2. Program to bulk-load items into redis queues.
  3. Call it using `./queuectl -h` to see the instructions.
  4. Note that the default redis url assumes the primary redis on blackbird is available on localhost using the default redis port.
  5. Note that there is an environment variable set on blackbird that will make it just work ther eas well.
  6. ## Features
  7. * Retrieve files from URLs
  8. * ZSTD Decompression
  9. * XZ Decompression
  10. * GZIP Decompression
  11. * Progress bar (can be disabled)
  12. ## Building
  13. Install rust via rustup.
  14. Enable the `x86_64-unknown-linux-musl` target architecture.
  15. ```sh
  16. rustup target add x86_64-unknown-linux-musl
  17. ```
  18. Now build the binary using:
  19. ```sh
  20. cargo build --release --target=x86_64-unknown-linux-musl
  21. ```
  22. The binary is now at `target/x86_64-unknown-linux-musl/release/queuectl`.
  23. This is a static binary that can be copied around at will.