source: thirdparty/blosc/ANNOUNCE.rst @ 00587dc

Revision 00587dc, 2.1 KB checked in by Hal Finkel <hfinkel@…>, 9 years ago (diff)

Initial Commit (gio-base-20150317)

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