dweiss commented on PR #811: URL: https://github.com/apache/commons-compress/pull/811#issuecomment-5455008822
I (the llm) also applied the same (?) concepts to the C version - https://github.com/dweiss/bzip2 It is faster than before (first is patched, recompiled, second is the original): ``` $ time ./bzip2 -d -c enwiki_general-20260823-00000.json.bz2 | wc -c 3364783751 real 0m43.440s user 0m42.915s sys 0m3.073s $ time bzip2 -d -c enwiki_general-20260823-00000.json.bz2 | wc -c 3364783751 real 1m8.521s user 1m7.824s sys 0m3.212s ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
