In the LoT blockchain, the LZSS (Lempel-Ziv-Storer-Szymanski) compression algorithm is used for object compression in the node. This is implemented through the compress_obj and decompress_obj functions.
Check out the deepWiki AI review on the current implementation: https://deepwiki.com/search/what-is-used-for-the-object-co_ce8cbda6-cf8d-490a-845a-bdd18a6bd8ef
Problem:
The LZSS is too slow at compressing/decompressing of 3d models (.obj) and, therefore, it slows down the blocks verification significantly.
Solution:
It is required to replace LZSS with a faster alternative, e.g. LZ4 or something else which would be 5x-10x faster.
In the LoT blockchain, the LZSS (Lempel-Ziv-Storer-Szymanski) compression algorithm is used for object compression in the node. This is implemented through the
compress_objanddecompress_objfunctions.Check out the deepWiki AI review on the current implementation: https://deepwiki.com/search/what-is-used-for-the-object-co_ce8cbda6-cf8d-490a-845a-bdd18a6bd8ef
Problem:
The LZSS is too slow at compressing/decompressing of 3d models (.obj) and, therefore, it slows down the blocks verification significantly.
Solution:
It is required to replace LZSS with a faster alternative, e.g. LZ4 or something else which would be 5x-10x faster.