Crates.io | redisfs |
lib.rs | redisfs |
version | 0.1.2 |
source | src |
created_at | 2022-07-14 11:17:24.567257 |
updated_at | 2022-07-14 13:43:49.080953 |
description | A small CLI tool to use Redis as a file server |
homepage | |
repository | https://github.com/BuyMyMojo/RedisFS/ |
max_upload_size | |
id | 625639 |
size | 39,339 |
About • Tech Stack • Usage • Contact
RedisFS allows you to easily store and download files inside of a Redis instance for lost latency access.
To use this project, follow the steps above:
# Using crates.io
cargo install redisfs
# Build using cargo
git clone https://github.com/BuyMyMojo/RedisFS.git
cd RedisFS
cargo build --release
To use this project, follow the steps above:
# Upload files
redisfs push <FILE_PATH> <FILE_KEY>
# Download file
redisfs clone <OUT_PATH> <FILE_KEY>
# Check file memory usage
redisfs usage <FILE_KEY>
# List all files
redisfs list
# Delte key
redisfs delete <FILE_KEY>
# Use a redis server with a password but no username
redisfs -r "redis://:[password]@[address]:[password]" list
# The : is required
# Use a redis server with a password and username
redisfs -r "redis://[username]:[password]@[address]:[password]" list
Made with ❤️ by Owen Quinlan, get in touch!