GitHub: https://github.com/Ferki-git-creator/fsp
Website(more info): https://ferki-git-creator.github.io/fsp/
If I made a mistake somewhere, please tell me.
1–5 of 5 posts
GitHub: https://github.com/Ferki-git-creator/fsp
Website(more info): https://ferki-git-creator.github.io/fsp/
If I made a mistake somewhere, please tell me.
Note that on this particular small sample of text, Zstandard `zstd -13` compresses it to 288 bytes, and with default settings, 292 bytes. Brotli using default settings compresses it to 236 bytes.
Before we say too much about the performance of your algorithm, encoding/decoding speed and memory use must be considered, especially with very large inputs. Note that on this particular small sample of text, Zstandard `zstd -13` compresses it to 288 bytes, and with default settings, 292 bytes. Brotli using default settings compresses it to 236 bytes.
Before we say too much about the performance of your algorithm, encoding/decoding speed and memory use must be considered, especially with very large inputs. Note that on this particular small sample of text, Zstandard `zstd -13` compresses it to 288 bytes, and with default settings, 292 bytes. Brotli using default settings compresses it to 236 bytes.
Thanks, you’re absolutely right — performance needs to be tested on large inputs with proper speed and memory profiling. I’ll run FSP on bigger datasets and compare it directly with zstd, brotli, gzip, etc. If needed, I’ll improve the algorithm to reduce overhead and make it scale better. This was just an early proof-of-concept, but I agree the next step is serious benchmarking.
It's definitely interesting that your method competes with Zip and such though. Keep it up!
Earlier quoted context omitted.
Thanks, you’re absolutely right — performance needs to be tested on large inputs with proper speed and memory profiling. I’ll run FSP on bigger datasets and compare it directly with zstd, brotli, gzip, etc. If needed, I’ll improve the algorithm to reduce overhead and make it scale better. This was just an early proof-of-concept, but I agree the next step is serious benchmarking.
You've got some stiff competition out there, with companies like Google and Facebook funding development of these algorithms. I think the days of individual coders surpassing the current state of the art are gone. It's in the interest of companies that move huge amounts of data to be as efficient at it as possible. It's definitely interesting that your method competes with Zip and such though. Keep it up!