Coder Social home page Coder Social logo

Comments (2)

vasi avatar vasi commented on July 20, 2024

Thanks for the report!

The default compression level is -6, which uses a dictionary size of 8 MiB. The default block size ratio is 2.0, so that yields a block size of 16 MiB. Your mini.iso file is around 25 MiB, so it will only have two blocks that can be independently compressed, and therefore only two compression threads. You can verify this by running xz -lv mini.iso.xz, which should show just two blocks in the compressed file.

You can raise the number of threads available by lowering the compression level or the block size ratio, but of course this will make the compression worse. Eg: ``pixz -p 8 -2 -f 1.5 mini.iso` will use a block size of 3 MiB, and will exercise all eight threads.

It might be worthwhile for pixz to automagically optimize this when a small file is detected, which is in the TODO list: optimized settings -> block size, for max threads on small files. I'm not convinced, however, that pixz should be automatically causing worse compression than the user expects. Perhaps a small wrapper program would be useful for this, to call pixz with the parameters that you prefer.

from pixz.

vasi avatar vasi commented on July 20, 2024

See also: #9

from pixz.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.