|--------------------------------|
| SmartFoxServer BASIC           |
| Patch version 1.5.9            |
|                                |
| (c) 2008 gotoAndPlay()         |
| www.gotoandplay.it             |
| www.smartfoxserver.com         |
|--------------------------------|


} Installation (server):
	copy the all files from the lib/ folder in your Server/lib/ folder
	stop the server (if running) and start it again

} Installation (client):
	copy the files from the Flash API folder to your directory of choice
	use the API as describe in the SFS documentation
	
} What's new:
	-> Fixed NoSuchElementException thrown by the ConnectionCleaner task
	-> Fixed a thread concurrency issue in the ConnectionCleaner
	-> Improved overall ConnectionCleaner performance
	-> Added better checks for invalid channel keys returned by selector (EventReader)
	-> New settings for handling dropped messages. (see below)
	-> Minor server core refactorings improve overall throughput and performance
	
	
} Performance notes:
	While fixing the bugs listed above we run numerous stress tests on the new patch code.
	We gathered the results of several tests and published them at this url -> http://www.smartfoxserver.com/whitepapers/benchmarks/


} New Optional settings:
	This block of XML should be added in the main <ServerSetup> node:
	
	<ClientMessagQueue>
		<QueueSize>120</QueueSize>
		<MaxAllowedDroppedPackets>100</MaxAllowedDroppedPackets>
	</ClientMessagQueue>
	
	The <QueueSize> parameter substitutes the old <MaxWriterQueue> which is still supported.
	The <MaxAllowedDroppedPackets> indicates the max. number of dropped packets before a client is disconnected.
	You can set this value to -1 to disable this feature. (DEFAULT)
	
	