[RELEASE] released version 1.2.13
Summary of changes : - 'maxconn' server parameter to do per-server session limitation - queueing to support non-blocking session limitation - fixed removal of cookies for cookie-less servers such as backup servers - two separate wait queues for expirable and non-expirable tasks provide better performance with lots of sessions. - some code cleanups and performance improvements - made state dumps a bit more verbose - fixed missing checks for NULL srv in dispatch mode - load balancing on backup servers was not possible in source hash mode. - two session flags shared the same bit, but fortunately they were not compatible.
This commit is contained in:
parent
532bb554aa
commit
c3a2e0713f
13
CHANGELOG
13
CHANGELOG
@ -1,6 +1,19 @@
|
|||||||
ChangeLog :
|
ChangeLog :
|
||||||
===========
|
===========
|
||||||
|
|
||||||
|
2006/05/13 : 1.2.13
|
||||||
|
- 'maxconn' server parameter to do per-server session limitation
|
||||||
|
- queueing to support non-blocking session limitation
|
||||||
|
- fixed removal of cookies for cookie-less servers such as backup servers
|
||||||
|
- two separate wait queues for expirable and non-expirable tasks provide
|
||||||
|
better performance with lots of sessions.
|
||||||
|
- some code cleanups and performance improvements
|
||||||
|
- made state dumps a bit more verbose
|
||||||
|
- fixed missing checks for NULL srv in dispatch mode
|
||||||
|
- load balancing on backup servers was not possible in source hash mode.
|
||||||
|
- two session flags shared the same bit, but fortunately they were not
|
||||||
|
compatible.
|
||||||
|
|
||||||
2006/04/15 : 1.2.12
|
2006/04/15 : 1.2.12
|
||||||
Very few changes preparing for more important changes to support per-server
|
Very few changes preparing for more important changes to support per-server
|
||||||
session limitations and queueing :
|
session limitations and queueing :
|
||||||
|
2
Makefile
2
Makefile
@ -2,7 +2,7 @@
|
|||||||
# You should use it this way :
|
# You should use it this way :
|
||||||
# make TARGET=os CPU=cpu
|
# make TARGET=os CPU=cpu
|
||||||
|
|
||||||
VERSION := 1.2.12
|
VERSION := 1.2.13
|
||||||
|
|
||||||
# Select target OS. TARGET must match a system for which COPTS and LIBS are
|
# Select target OS. TARGET must match a system for which COPTS and LIBS are
|
||||||
# correctly defined below.
|
# correctly defined below.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Summary: HA-Proxy is a TCP/HTTP reverse proxy for high availability environments
|
Summary: HA-Proxy is a TCP/HTTP reverse proxy for high availability environments
|
||||||
Name: haproxy
|
Name: haproxy
|
||||||
Version: 1.2.12
|
Version: 1.2.13
|
||||||
Release: 1
|
Release: 1
|
||||||
License: GPL
|
License: GPL
|
||||||
Group: System Environment/Daemons
|
Group: System Environment/Daemons
|
||||||
@ -69,6 +69,9 @@ fi
|
|||||||
%attr(0755,root,root) %config %{_sysconfdir}/rc.d/init.d/%{name}
|
%attr(0755,root,root) %config %{_sysconfdir}/rc.d/init.d/%{name}
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed May 01 2006 Willy Tarreau <willy@w.ods.org>
|
||||||
|
- updated to 1.2.13
|
||||||
|
|
||||||
* Wed Apr 15 2006 Willy Tarreau <willy@w.ods.org>
|
* Wed Apr 15 2006 Willy Tarreau <willy@w.ods.org>
|
||||||
- updated to 1.2.12
|
- updated to 1.2.12
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Summary: HA-Proxy is a TCP/HTTP reverse proxy for high availability environments
|
Summary: HA-Proxy is a TCP/HTTP reverse proxy for high availability environments
|
||||||
Name: haproxy
|
Name: haproxy
|
||||||
Version: 1.2.12
|
Version: 1.2.13
|
||||||
Release: 1
|
Release: 1
|
||||||
License: GPL
|
License: GPL
|
||||||
Group: System Environment/Daemons
|
Group: System Environment/Daemons
|
||||||
@ -71,6 +71,9 @@ fi
|
|||||||
%attr(0755,root,root) %config %{_sysconfdir}/rc.d/init.d/%{name}
|
%attr(0755,root,root) %config %{_sysconfdir}/rc.d/init.d/%{name}
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed May 01 2006 Willy Tarreau <willy@w.ods.org>
|
||||||
|
- updated to 1.2.13
|
||||||
|
|
||||||
* Wed Apr 15 2006 Willy Tarreau <willy@w.ods.org>
|
* Wed Apr 15 2006 Willy Tarreau <willy@w.ods.org>
|
||||||
- updated to 1.2.12
|
- updated to 1.2.12
|
||||||
|
|
||||||
|
@ -89,11 +89,11 @@
|
|||||||
#include "include/mini-clist.h"
|
#include "include/mini-clist.h"
|
||||||
|
|
||||||
#ifndef HAPROXY_VERSION
|
#ifndef HAPROXY_VERSION
|
||||||
#define HAPROXY_VERSION "1.2.12"
|
#define HAPROXY_VERSION "1.2.13"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef HAPROXY_DATE
|
#ifndef HAPROXY_DATE
|
||||||
#define HAPROXY_DATE "2006/04/15"
|
#define HAPROXY_DATE "2006/05/13"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* this is for libc5 for example */
|
/* this is for libc5 for example */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user