Loading debian/changelog +7 −0 Original line number Diff line number Diff line libparitypp (20260405+23) unstable; urgency=medium * Increase STRIPE_SIZE from 16KB to 4MB to reduce roundtrips per store (e.g. 188MB: 11490 stripes -> 46 stripes) -- Jan Koester <jan.koester@tuxist.de> Sun, 05 Apr 2026 00:00:00 +0000 libparitypp (20260405+22) unstable; urgency=medium * Add diagnostic stderr logging to client::store and store_stripe for Loading include/paritypp/client.h +2 −2 Original line number Diff line number Diff line Loading @@ -27,8 +27,8 @@ public: virtual std::string error_message() const { return {}; } }; // Fixed stripe size for chunk-level parity encoding (16 KB) static constexpr size_t STRIPE_SIZE = 16384; // Fixed stripe size for chunk-level parity encoding (4 MB) static constexpr size_t STRIPE_SIZE = 4096 * 1024; // QUIC client for distributing parity-encoded blocks across storage nodes class client { Loading Loading
debian/changelog +7 −0 Original line number Diff line number Diff line libparitypp (20260405+23) unstable; urgency=medium * Increase STRIPE_SIZE from 16KB to 4MB to reduce roundtrips per store (e.g. 188MB: 11490 stripes -> 46 stripes) -- Jan Koester <jan.koester@tuxist.de> Sun, 05 Apr 2026 00:00:00 +0000 libparitypp (20260405+22) unstable; urgency=medium * Add diagnostic stderr logging to client::store and store_stripe for Loading
include/paritypp/client.h +2 −2 Original line number Diff line number Diff line Loading @@ -27,8 +27,8 @@ public: virtual std::string error_message() const { return {}; } }; // Fixed stripe size for chunk-level parity encoding (16 KB) static constexpr size_t STRIPE_SIZE = 16384; // Fixed stripe size for chunk-level parity encoding (4 MB) static constexpr size_t STRIPE_SIZE = 4096 * 1024; // QUIC client for distributing parity-encoded blocks across storage nodes class client { Loading