Table of Contents

OpenSRF release notes: 1.6.x

1.6.3 (released 2011-03-18)

Bug fixes

1.6.2 (released 2010-12-16)

Bug fixes

1.6.1 (released 2010-09-16)

Bug fixes

1.6.0 (released 2010-09-16)

New features

Linux distribution support

Added
Dropped

(C, Perl) Add response chunking support

Two new optional paramters to register_method are now supported:

OpenSRF has always supported message bundling, but only respond_complete made use of this fact by sending the final result message and the completion status message in the same XMPP envelope. Now, on a per method basis, RESULT messages can be bundled (cached) until one of three conditions occurs:

Because the overhead of sending multiple XMPP messages far outweighs the caching and cache management costs of chunking, the default for max_chunk_size is set at 10240 bytes (10k). The default for max_chunk_count is 0. To turn off chunking completely, set the max_chunk_size register_method parameter to 0.

Infrastructure improvements

Bug fixes