You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/user_guide/io.rst
+43-40
Original file line number
Diff line number
Diff line change
@@ -4220,46 +4220,49 @@ Compression
4220
4220
all kinds of stores, not just tables. Two parameters are used to
4221
4221
control compression: ``complevel`` and ``complib``.
4222
4222
4223
-
``complevel`` specifies if and how hard data is to be compressed.
4224
-
``complevel=0`` and ``complevel=None`` disables
4225
-
compression and ``0<complevel<10`` enables compression.
4226
-
4227
-
``complib`` specifies which compression library to use. If nothing is
4228
-
specified the default library ``zlib`` is used. A
4229
-
compression library usually optimizes for either good
4230
-
compression rates or speed and the results will depend on
4231
-
the type of data. Which type of
4232
-
compression to choose depends on your specific needs and
4233
-
data. The list of supported compression libraries:
4234
-
4235
-
- `zlib <https://zlib.net/>`_: The default compression library. A classic in terms of compression, achieves good compression rates but is somewhat slow.
4236
-
- `lzo <https://www.oberhumer.com/opensource/lzo/>`_: Fast compression and decompression.
4237
-
- `bzip2 <http://bzip.org/>`_: Good compression rates.
4238
-
- `blosc <http://www.blosc.org/>`_: Fast compression and decompression.
4239
-
4240
-
Support for alternative blosc compressors:
4241
-
4242
-
- `blosc:blosclz <http://www.blosc.org/>`_ This is the
0 commit comments