diff options
author | Ask Solem <ask@celeryproject.org> | 2012-08-29 15:46:46 +0100 |
---|---|---|
committer | Ask Solem <ask@celeryproject.org> | 2012-08-29 15:46:46 +0100 |
commit | f1fe4e6881916e6993d7aa548f9d8601562a225e (patch) | |
tree | 9a4bb4ef2c84bbbe916f1f60c54101ec2b6ea9da /docs/userguide/serialization.rst | |
parent | c0244d514efe1694576683b6355ab123b809f620 (diff) | |
parent | b7c5f069a42aa400fffdf3c49f626fe7871ab8e4 (diff) | |
download | kombu-asynchronous-broadcasts.tar.gz |
Merge branch 'master' into asynchronous-broadcastsasynchronous-broadcasts
Diffstat (limited to 'docs/userguide/serialization.rst')
-rw-r--r-- | docs/userguide/serialization.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/userguide/serialization.rst b/docs/userguide/serialization.rst index c39cc3cc..d07c98a5 100644 --- a/docs/userguide/serialization.rst +++ b/docs/userguide/serialization.rst @@ -44,6 +44,10 @@ Each option has its advantages and disadvantages. smaller messages when sending binary files, and a slight speedup over `JSON` processing. + By default Kombu uses pickle protocol 2, but this can be changed + using the :envvar:`PICKLE_PROTOCOL` environment variable or by changing + the global :data:`kombu.serialization.pickle_protocol` flag. + `yaml` -- YAML has many of the same characteristics as `json`, except that it natively supports more data types (including dates, recursive references, etc.) |