chore: update comments to reflect hash alg used (SHA-256 -> Blake3)

This commit is contained in:
Edouard Vanbelle
2026-05-13 11:29:45 +02:00
parent f7946028f4
commit 9dd5877bb2
5 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ OxiCloud uses **moka** (a lock-free, concurrent cache) for write-behind caching
| Directory listings | 120 s | 10 000 | Frequently accessed folder contents |
| Thumbnail cache | configurable | 1 000 | Generated WebP/AVIF thumbnails |
| Image transcode | configurable | 500 | On-the-fly image transcoding results |
| Blob hash | 30 s TTI | 5 000 | SHA-256 hashes for dedup lookups |
| Blob hash | 30 s TTI | 5 000 | BLAKE3 hashes for dedup lookups |
| Audio metadata | — | 2 000 | ID3 tags and duration |
## How It Works
+2 -2
View File
@@ -14,7 +14,7 @@ NextCloud was too slow on a home server. So OxiCloud was built to run on minimal
| **Cold start** | < 1 s | 5–15 s |
| **CPU at idle** | ~0 % | 1–5 % (cron, background jobs) |
| **Min. hardware** | 1 vCPU / 512 MB RAM | 2 vCPU / 2 GB RAM |
| **File dedup** | SHA-256 content-addressable | None |
| **File dedup** | BLAKE3 content-addressable | None |
| **Dependencies** | Single binary + PostgreSQL | PHP, Apache/Nginx, Redis, Cron, … |
| **WebDAV** | Built-in (RFC 4918) | Built-in |
| **CalDAV / CardDAV** | Built-in | Via apps |
@@ -28,7 +28,7 @@ NextCloud was too slow on a home server. So OxiCloud was built to run on minimal
### Storage & Files
- Drag-and-drop upload, multi-file, grid & list views
- Chunked uploads (TUS-like, parallel, resumable, MD5 integrity)
- SHA-256 content-addressable file deduplication with ref-counting
- BLAKE3 content-addressable file deduplication with ref-counting
- Adaptive compression (zstd / gzip per MIME type)
- Trash bin with soft-delete and auto-purge
- Favourites, recent files, full-text search
+1 -1
View File
@@ -25,7 +25,7 @@ features:
details: Single Rust binary, ~40 MB Docker image, <1s cold start, 30–50 MB idle RAM.
- icon: 📁
title: Full File Management
details: Chunked uploads, SHA-256 deduplication, trash, favourites, full-text search, thumbnails.
details: Chunked uploads, BLAKE3 deduplication, trash, favourites, full-text search, thumbnails.
- icon: 🔗
title: WebDAV / CalDAV / CardDAV
details: RFC-compliant protocols for files, calendars, and contacts. Works with all major clients.