From df1af873223ef9332640e57209bbcd9f0c8847d1 Mon Sep 17 00:00:00 2001 From: Alexander Zhirov Date: Sat, 13 Sep 2025 02:54:13 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A7=D0=B8=D1=81=D0=BB=D0=BE=D0=B2=D0=BE?= =?UTF-8?q?=D0=B9=20=D0=BF=D0=BE=D0=BA=D0=B0=D0=B7=D0=B0=D1=82=D0=B5=D0=BB?= =?UTF-8?q?=D1=8C=20=D0=BA=D0=BE=D0=BC=D0=BF=D1=80=D0=B5=D1=81=D1=81=D0=B8?= =?UTF-8?q?=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 3 +-- README.ru.md | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0c88b61..1477e12 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,6 @@ import cdcdb; import std.stdio : writeln, File; import std.file : exists, remove; -import zstd : Level; void main() { @@ -51,7 +50,7 @@ void main() string dbPath = "example.db"; // Initialize Storage with Zstd compression - auto storage = new Storage(dbPath, true, Level.speed); + auto storage = new Storage(dbPath, true, 22); // Create a snapshot ubyte[] data = cast(ubyte[]) "Hello, cdcdb!".dup; diff --git a/README.ru.md b/README.ru.md index 530aba1..fda9f70 100644 --- a/README.ru.md +++ b/README.ru.md @@ -43,7 +43,6 @@ import cdcdb; import std.stdio : writeln, File; import std.file : exists, remove; -import zstd : Level; void main() { @@ -51,7 +50,7 @@ void main() string dbPath = "example.db"; // Инициализация Storage с компрессией Zstd - auto storage = new Storage(dbPath, true, Level.speed); + auto storage = new Storage(dbPath, true, 22); // Создание снимка ubyte[] data = cast(ubyte[]) "Hello, cdcdb!".dup;