fix: daletpack description

This commit is contained in:
Artemy Egorov 2024-08-01 15:57:20 +03:00
parent 2df0c1b5cf
commit f2a30d0289
2 changed files with 3 additions and 3 deletions

View file

@ -4,8 +4,6 @@
Daletl is data representation of serialized/deserialized [DaletPack](./daletpack.md). Daletl is data representation of serialized/deserialized [DaletPack](./daletpack.md).
Daletl must be serialized as [DaletPack](./daletpack.md). All data transfer between server and client is done in this format.
### Root ### Root
Daletl root is array of tags. For convenience, we will use the typescript notation. Daletl root is array of tags. For convenience, we will use the typescript notation.

View file

@ -1,6 +1,8 @@
# DaletPack specification for Dalet v1.0-preview # DaletPack specification for Dalet v1.0-preview
DaletPack is an binary data format for Dalet, that is used for minimizing the size of transmitted daletl data. DaletPack is designed specifically to transfer as little data as possible, it compresses the declaration of tag types into the smallest possible volume. Nothing unnecessary is transferred. DaletPack is an binary data format for Dalet, that is used for minimizing the size of transmitted data. DaletPack is designed specifically to transfer as little data as possible, it compresses the declaration of tag types into the smallest possible volume. Nothing unnecessary is transferred.
All apps that supports Dalet must use this format when transmitting data between hosts.
All data must be compressed with [zstd](https://datatracker.ietf.org/doc/html/rfc8878). All data must be compressed with [zstd](https://datatracker.ietf.org/doc/html/rfc8878).