From c726f3d1a9b463a9d60b01b5f4d38175772a23b3 Mon Sep 17 00:00:00 2001 From: kjuulh Date: Sat, 9 Nov 2024 17:19:51 +0100 Subject: [PATCH] feat: set notification to 4mb Signed-off-by: kjuulh --- crates/nodata-storage/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nodata-storage/src/lib.rs b/crates/nodata-storage/src/lib.rs index 70c3442..a9d5922 100644 --- a/crates/nodata-storage/src/lib.rs +++ b/crates/nodata-storage/src/lib.rs @@ -69,7 +69,7 @@ pub struct Storage { impl Storage { pub fn new(backend: StorageBackend) -> Self { Self { - segment_size_bytes: 4096 * 100, // 4MB + segment_size_bytes: 4096 * 1000, // 4MB buffer: Arc::default(), backend: Arc::new(backend), }