[00587dc] | 1 | =============================================================== |
---|
| 2 | Announcing Blosc 1.2.3 |
---|
| 3 | A blocking, shuffling and lossless compression library |
---|
| 4 | =============================================================== |
---|
| 5 | |
---|
| 6 | What is new? |
---|
| 7 | ============ |
---|
| 8 | |
---|
| 9 | New `blosc_init()` and `blosc_destroy()` functions have been added so |
---|
| 10 | that the global lock can be initialized safely. These new functions |
---|
| 11 | will also allow for other kind of initializations/destructions in the |
---|
| 12 | future. |
---|
| 13 | |
---|
| 14 | Existing applications using Blosc do not need to start using the new |
---|
| 15 | functions right away, as long as they calling `blosc_set_nthreads()` |
---|
| 16 | previous to anything else. However, using them is highly recommended. |
---|
| 17 | |
---|
| 18 | Thanks to Oscar Villellas for the init/destroy suggestion, it is a |
---|
| 19 | nice idea indeed! |
---|
| 20 | |
---|
| 21 | For more info, please see the release notes in: |
---|
| 22 | |
---|
| 23 | https://github.com/FrancescAlted/blosc/wiki/Release-notes |
---|
| 24 | |
---|
| 25 | What is it? |
---|
| 26 | =========== |
---|
| 27 | |
---|
| 28 | Blosc (http://www.blosc.org) is a high performance compressor |
---|
| 29 | optimized for binary data. It has been designed to transmit data to |
---|
| 30 | the processor cache faster than the traditional, non-compressed, |
---|
| 31 | direct memory fetch approach via a memcpy() OS call. |
---|
| 32 | |
---|
| 33 | Blosc is the first compressor (that I'm aware of) that is meant not |
---|
| 34 | only to reduce the size of large datasets on-disk or in-memory, but |
---|
| 35 | also to accelerate object manipulations that are memory-bound. |
---|
| 36 | |
---|
| 37 | There is also a handy command line for Blosc called Bloscpack |
---|
| 38 | (https://github.com/esc/bloscpack) that allows you to compress large |
---|
| 39 | binary datafiles on-disk. Although the format for Bloscpack has not |
---|
| 40 | stabilized yet, it allows you to effectively use Blosc from you |
---|
| 41 | favorite shell. |
---|
| 42 | |
---|
| 43 | Download sources |
---|
| 44 | ================ |
---|
| 45 | |
---|
| 46 | Please go to main web site: |
---|
| 47 | |
---|
| 48 | http://www.blosc.org/ |
---|
| 49 | |
---|
| 50 | and proceed from there. The github repository is over here: |
---|
| 51 | |
---|
| 52 | https://github.com/FrancescAlted/blosc |
---|
| 53 | |
---|
| 54 | Blosc is distributed using the MIT license, see LICENSES/BLOSC.txt for |
---|
| 55 | details. |
---|
| 56 | |
---|
| 57 | Mailing list |
---|
| 58 | ============ |
---|
| 59 | |
---|
| 60 | There is an official Blosc mailing list at: |
---|
| 61 | |
---|
| 62 | [email protected] |
---|
| 63 | http://groups.google.es/group/blosc |
---|
| 64 | |
---|
| 65 | |
---|
| 66 | Enjoy Data! |
---|
| 67 | |
---|
| 68 | |
---|
| 69 | .. Local Variables: |
---|
| 70 | .. mode: rst |
---|
| 71 | .. coding: utf-8 |
---|
| 72 | .. fill-column: 70 |
---|
| 73 | .. End: |
---|