Fix typo in snappy.rst (#6992)

Fix typo in snappy.rst
This commit is contained in:
Marius Kjærstad 2023-03-01 09:03:31 +01:00 committed by GitHub
parent d6d142c4b0
commit 8ab3be0d5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@ Block Bodies Compression: Snappy
Issue
=====
Block bodies repressent the biggest portion of the database as a bucket and they we need to make such space more efficient. Thus, we use compression through snappy.
Block bodies represent the biggest portion of the database as a bucket and they we need to make such space more efficient. Thus, we use compression through snappy.
Snappy
======
@ -14,4 +14,4 @@ Snappy is a compression/decompression library. It does not aim for maximum compr
Why Snappy
==========
In the case of Erigon, compression is needed to reduce database size, however we cannot have slow processing while doing so. thanks, to snappy we can reduce the size of block bodies without having to sacrifice a significant amount of time during the insertion of block bodies in the database in stage 2.
In the case of Erigon, compression is needed to reduce database size, however we cannot have slow processing while doing so. thanks, to snappy we can reduce the size of block bodies without having to sacrifice a significant amount of time during the insertion of block bodies in the database in stage 2.