From 2da3c57adb44ed8606818fcdf59a437b4c312654 Mon Sep 17 00:00:00 2001 From: Edgar Luque Date: Thu, 6 Jan 2022 10:45:51 +0100 Subject: [PATCH] better --- content/blog/zstd-streaming-in-rust.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/blog/zstd-streaming-in-rust.md b/content/blog/zstd-streaming-in-rust.md index c0a2e44..7923390 100644 --- a/content/blog/zstd-streaming-in-rust.md +++ b/content/blog/zstd-streaming-in-rust.md @@ -17,7 +17,7 @@ Each `.tar.zstd` file contains a JSON file every 5 seconds starting from 00:00 t These files, while compressed use only about ~8mb, but they are very efficiently compressed, when decompressed they take about 7gb. -So if we don't want to use a lot of disk space or RAM we need to parse the data in a streaming way. +So if we don't want to use a lot of disk space or memory we need to parse the data in a streaming way. ## The libraries