You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2010/11/11 22:32:38 UTC

svn commit: r1034147 - /httpcomponents/httpcore/trunk/RELEASE_NOTES.txt

Author: olegk
Date: Thu Nov 11 21:32:37 2010
New Revision: 1034147

URL: http://svn.apache.org/viewvc?rev=1034147&view=rev
Log:
Updated release notes for HttpCore 4.1 release

Modified:
    httpcomponents/httpcore/trunk/RELEASE_NOTES.txt

Modified: httpcomponents/httpcore/trunk/RELEASE_NOTES.txt
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/RELEASE_NOTES.txt?rev=1034147&r1=1034146&r2=1034147&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/RELEASE_NOTES.txt (original)
+++ httpcomponents/httpcore/trunk/RELEASE_NOTES.txt Thu Nov 11 21:32:37 2010
@@ -1,6 +1,21 @@
 Release 4.1
 -------------------
 
+This is the first stable (GA) release of HttpCore 4.1. This release provides a compatibility mode 
+with JREs that have a naive (broken) implementation of SelectionKey API and also improves
+compatibility with the Google Android platform. There has also been a number of performance 
+related improvements and bug fixes in both blocking and non-blocking components. 
+
+All upstream projects are encouraged to upgrade.
+
+HttpCore is a set of low level HTTP transport components that can be used to build custom
+client and server side HTTP services with a minimal footprint. HttpCore supports two I/O
+models: blocking I/O model based on the classic Java I/O and non-blocking, event driven I/O
+model based on Java NIO.  The blocking I/O model may be more appropriate for data intensive,
+low latency scenarios, whereas the non-blocking model may be more appropriate for high latency
+scenarios where raw data throughput is less important than the ability to handle thousands of
+simultaneous HTTP connections in a resource efficient manner.
+
 * [HTTPCORE-240]: DefaultConnectingIOReactor leaks a socket descriptor if the session request fails.
   Contributed by Oleg Kalnichevski <olegk at apache.org>