From 5035c06615fa3f5815e00d198278410a0fb27967 Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Tue, 24 Sep 2024 17:51:28 +0200 Subject: [PATCH] Clarified that blobs can also be serialized as scalars --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0b9d4f3..4100887 100644 --- a/README.md +++ b/README.md @@ -209,7 +209,7 @@ For optimal performance, the specified types must be as strict as possible, here * `ValueType::INT`: Direct storage of integer values. * `ValueType::BOOL`: Direct storage of boolean values. * `ValueType::FLOAT`: Direct storage of floating point (double precision) values. -* `ValueType::SCALAR`: Values of any scalar type (including arrays, excluding objects), serialized as specified in the settings. +* `ValueType::SCALAR`: Values of any scalar type (including blobs and arrays, excluding objects), serialized as specified in the settings. Using SCALAR worsens performances, please use any of the other types if possible. * `ValueType::OBJECT`: Objects extending DbObject, serialized as specified in the settings.