https://github.com/darkskygit/cfkvfs
https://github.com/darkskygit/cfkvfs
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/darkskygit/cfkvfs
- Owner: darkskygit
- License: agpl-3.0
- Created: 2021-07-26T13:36:05.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-02T14:54:42.000Z (almost 5 years ago)
- Last Synced: 2025-03-01T11:18:55.450Z (over 1 year ago)
- Language: Rust
- Size: 17.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Cache files with Cloudflare kv / LRU cache
```rust
let cache_handler = CfKvFs::builder("https://example.com", "path")
.auth("Bearer 12345")
.table("test1")
.build()
.unwrap();
let data = cache_handler.get_blob("test.bin").unwrap();
```