ANNOUNCE.rst 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. ===============================================================
  2. Announcing c-blosc 1.9.3
  3. A blocking, shuffling and lossless compression library for C
  4. ===============================================================
  5. What is new?
  6. ============
  7. This is a maintenance release for reverting a mistake introduced in
  8. 1.7.1. At that time, bit-shuffling was enabled for typesize == 1 (i.e.
  9. strings), but the change also included byte-shuffling accidentally. This
  10. only affected performance, but in a quite bad way (a copy was needed).
  11. This has been fixed and byte-shuffling is not active anymore when
  12. typesize == 1.
  13. For more info, please see the release notes in:
  14. https://github.com/Blosc/c-blosc/blob/master/RELEASE_NOTES.rst
  15. What is it?
  16. ===========
  17. Blosc (http://www.blosc.org) is a high performance meta-compressor
  18. optimized for binary data. It has been designed to transmit data to
  19. the processor cache faster than the traditional, non-compressed,
  20. direct memory fetch approach via a memcpy() OS call.
  21. Blosc has internal support for different compressors like its internal
  22. BloscLZ, but also LZ4, LZ4HC, Snappy and Zlib. This way these can
  23. automatically leverage the multithreading and pre-filtering
  24. (shuffling) capabilities that comes with Blosc.
  25. Download sources
  26. ================
  27. Please go to main web site:
  28. http://www.blosc.org/
  29. and proceed from there. The github repository is over here:
  30. https://github.com/Blosc
  31. Blosc is distributed using the MIT license, see LICENSES/BLOSC.txt for
  32. details.
  33. Mailing list
  34. ============
  35. There is an official Blosc mailing list at:
  36. blosc@googlegroups.com
  37. http://groups.google.es/group/blosc
  38. Enjoy Data!