haproxy public development tree
Go to file
Olivier Houchard dc2f2753e9 MEDIUM: servers: Split the connections into idle, safe, and available.
Revamp the server connection lists. We know have 3 lists :
- idle_conns, which contains idling connections
- safe_conns, which contains idling connections that are safe to use even
for the first request
- available_conns, which contains connections that are not idling, but can
still accept new streams (those are HTTP/2 or fastcgi, and are always
considered safe).
2020-03-19 22:07:33 +01:00
.github CI: add spellcheck github action 2020-03-14 09:44:21 +01:00
contrib DOC: assorted typo fixes in the documentation 2020-03-18 11:34:33 +01:00
doc DOC: assorted typo fixes in the documentation 2020-03-18 11:34:33 +01:00
ebtree
examples
include MEDIUM: servers: Split the connections into idle, safe, and available. 2020-03-19 22:07:33 +01:00
reg-tests CLEANUP: assorted typo fixes in the code and comments 2020-03-14 09:42:07 +01:00
scripts
src MEDIUM: servers: Split the connections into idle, safe, and available. 2020-03-19 22:07:33 +01:00
tests
.cirrus.yml
.gitignore
.travis.yml CI: travis: proper group output redirection together with travis_wait 2020-03-18 09:40:52 +01:00
BRANCHES
CHANGELOG
CONTRIBUTING
INSTALL
LICENSE
MAINTAINERS
Makefile BUILD: makefile: fix expression again to detect ARM platform 2020-03-18 08:21:57 +01:00
README
ROADMAP
SUBVERS
VERDATE
VERSION

The HAProxy documentation has been split into a number of different files for
ease of use.

Please refer to the following files depending on what you're looking for :

  - INSTALL for instructions on how to build and install HAProxy
  - BRANCHES to understand the project's life cycle and what version to use
  - LICENSE for the project's license
  - CONTRIBUTING for the process to follow to submit contributions

The more detailed documentation is located into the doc/ directory :

  - doc/intro.txt for a quick introduction on HAProxy
  - doc/configuration.txt for the configuration's reference manual
  - doc/lua.txt for the Lua's reference manual
  - doc/SPOE.txt for how to use the SPOE engine
  - doc/network-namespaces.txt for how to use network namespaces under Linux
  - doc/management.txt for the management guide
  - doc/regression-testing.txt for how to use the regression testing suite
  - doc/peers.txt for the peers protocol reference
  - doc/coding-style.txt for how to adopt HAProxy's coding style
  - doc/internals for developer-specific documentation (not all up to date)