<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ranch.git, branch 0.6.1</title>
<subtitle>Socket acceptor pool for TCP protocols.
</subtitle>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/ranch.git/'/>
<entry>
<title>Update Ranch to 0.6.1</title>
<updated>2013-01-17T18:30:09+00:00</updated>
<author>
<name>Loïc Hoguin</name>
<email>essen@ninenines.eu</email>
</author>
<published>2013-01-17T18:30:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/ranch.git/commit/?id=d635aece25ae0d6489d2c3c074cfb6363d92fc61'/>
<id>d635aece25ae0d6489d2c3c074cfb6363d92fc61</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update AUTHORS file</title>
<updated>2013-01-17T18:29:50+00:00</updated>
<author>
<name>Loïc Hoguin</name>
<email>essen@ninenines.eu</email>
</author>
<published>2013-01-17T18:29:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/ranch.git/commit/?id=e4833a4ec674e737d776a06dfff423924c49bee3'/>
<id>e4833a4ec674e737d776a06dfff423924c49bee3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Explain how to use Ranch with a gen_server in the guide</title>
<updated>2013-01-17T18:23:15+00:00</updated>
<author>
<name>Loïc Hoguin</name>
<email>essen@ninenines.eu</email>
</author>
<published>2013-01-17T18:23:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/ranch.git/commit/?id=5ddd20e5ae975d6b1eb32ea1ef47639b8b8a5eb7'/>
<id>5ddd20e5ae975d6b1eb32ea1ef47639b8b8a5eb7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add section about platform-specific TCP features to the guide</title>
<updated>2013-01-17T17:26:14+00:00</updated>
<author>
<name>Loïc Hoguin</name>
<email>essen@ninenines.eu</email>
</author>
<published>2013-01-17T17:26:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/ranch.git/commit/?id=81757b2bced82850d1b72020a26d8fca1b709bde'/>
<id>81757b2bced82850d1b72020a26d8fca1b709bde</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Do not require rebar to build Ranch</title>
<updated>2013-01-17T16:01:04+00:00</updated>
<author>
<name>Loïc Hoguin</name>
<email>essen@ninenines.eu</email>
</author>
<published>2013-01-17T15:46:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/ranch.git/commit/?id=d20989e722c50afea4ed510f372bbbd9221b9048'/>
<id>d20989e722c50afea4ed510f372bbbd9221b9048</id>
<content type='text'>
All is done in the Makefile, like with Cowboy.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
All is done in the Makefile, like with Cowboy.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'optimise-conn-count' of https://github.com/ferd/ranch</title>
<updated>2013-01-15T16:49:30+00:00</updated>
<author>
<name>Loïc Hoguin</name>
<email>essen@ninenines.eu</email>
</author>
<published>2013-01-15T16:49:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/ranch.git/commit/?id=0a101a324da969e51395d21e2782095a433b2084'/>
<id>0a101a324da969e51395d21e2782095a433b2084</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Ignore tracking of requests when MaxConn = infinity</title>
<updated>2013-01-15T16:45:50+00:00</updated>
<author>
<name>Fred Hebert</name>
<email>mononcqc@ferd.ca</email>
</author>
<published>2013-01-11T15:31:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/ranch.git/commit/?id=662d94a531178af005f06b0bfb4a8660b0fa023f'/>
<id>662d94a531178af005f06b0bfb4a8660b0fa023f</id>
<content type='text'>
There is no need to contact the server and track requests unless being
asked to do so by the user. It's going to be faster and more efficient
to not track anything when being told tracking doesn't matter.

Whenever the max connections is set to infinity, the connections
counting key is not created, or is deleted if it existed already.
When using a numeric value, the connection count is created or
maintained if it existed already.

Moreover, trying to reduce a listener's counter while the max connection
number is set to `infinity` will return 0 and avoid all counting
operations as they are meaningless.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There is no need to contact the server and track requests unless being
asked to do so by the user. It's going to be faster and more efficient
to not track anything when being told tracking doesn't matter.

Whenever the max connections is set to infinity, the connections
counting key is not created, or is deleted if it existed already.
When using a numeric value, the connection count is created or
maintained if it existed already.

Moreover, trying to reduce a listener's counter while the max connection
number is set to `infinity` will return 0 and avoid all counting
operations as they are meaningless.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' of https://github.com/ferd/ranch</title>
<updated>2013-01-15T16:38:24+00:00</updated>
<author>
<name>Loïc Hoguin</name>
<email>essen@ninenines.eu</email>
</author>
<published>2013-01-15T16:38:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/ranch.git/commit/?id=56d75d4c03bd6eb0f7c89806b310a9c38022b6fd'/>
<id>56d75d4c03bd6eb0f7c89806b310a9c38022b6fd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow raw socket options for TCP and SSL</title>
<updated>2013-01-15T16:34:52+00:00</updated>
<author>
<name>Fred Hebert</name>
<email>mononcqc@ferd.ca</email>
</author>
<published>2013-01-09T19:39:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/ranch.git/commit/?id=c7bf6d2e4d4ae559ffd1ca429cbe605f710e7f0c'/>
<id>c7bf6d2e4d4ae559ffd1ca429cbe605f710e7f0c</id>
<content type='text'>
This patch lets the user set and use raw socket options as described in
inet:setopts/2 documentation.

The raw options can be useful to use TCP features that are platform-
specific and not supported in inet in general, such as TCP_DEFER_ACCEPT
or TCP_LINGER2 in linux stacks, for example.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch lets the user set and use raw socket options as described in
inet:setopts/2 documentation.

The raw options can be useful to use TCP features that are platform-
specific and not supported in inet in general, such as TCP_DEFER_ACCEPT
or TCP_LINGER2 in linux stacks, for example.
</pre>
</div>
</content>
</entry>
<entry>
<title>Update version to 0.6.0</title>
<updated>2012-12-24T21:50:24+00:00</updated>
<author>
<name>Loïc Hoguin</name>
<email>essen@ninenines.eu</email>
</author>
<published>2012-12-24T21:50:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/ranch.git/commit/?id=9fd9294a13375a56c42b4b77225bbe317ecf0b4d'/>
<id>9fd9294a13375a56c42b4b77225bbe317ecf0b4d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
