ia64/xen-unstable
changeset 19612:fad68a77af5c
xend: adjust relocation buffer size
This can greatly improve ssl relocation performance (to about 1/3
compared with buffersize 1024).
Signed-off-by: Zhigang Wang <zhigang.x.wang@oracle.com>
This can greatly improve ssl relocation performance (to about 1/3
compared with buffersize 1024).
Signed-off-by: Zhigang Wang <zhigang.x.wang@oracle.com>
author | Keir Fraser <keir.fraser@citrix.com> |
---|---|
date | Tue May 19 01:50:00 2009 +0100 (2009-05-19) |
parents | 887337323bd8 |
children | 4e7c5eb71774 |
files | tools/python/xen/web/connection.py |
line diff
1.1 --- a/tools/python/xen/web/connection.py Tue May 19 01:48:18 2009 +0100 1.2 +++ b/tools/python/xen/web/connection.py Tue May 19 01:50:00 2009 +0100 1.3 @@ -37,7 +37,7 @@ specifying what kind of socket they are. 1.4 for TCP and unix-domain sockets (see tcp.py and unix.py). 1.5 """ 1.6 1.7 -BUFFER_SIZE = 1024 1.8 +BUFFER_SIZE = 16384 1.9 BACKLOG = 5 1.10 1.11