You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
add compression (on upload) and decompression (on download) (both on client-side) to all files to free some network bandwidth
ensure that the compression algorithm is listed within within the data somewhere, likely at the top section where the root node is. This way, we can smoothly transition to either not have compression algorithms or change the algorithm and still have everything backwards compatible.
The text was updated successfully, but these errors were encountered:
No, it means to compress and decompress on the client. The point would be to minimize the size of the file over the network whether it be from the client to the backend or from the backend to the blockchain. For example, if I upload file A, it would get compressed before being sent to backend. When I request it in the future, the backend would send the compressed version, and we would then decompress it on the client.
Folders will not be compressed, as the data of folders needs to be unaltered in order to appropriately point to the name of the files it contains. However, files within a folder, will of course be compressed. Essentially, anything in the DATA section of a node should be compressed. @clostao
The text was updated successfully, but these errors were encountered: