Some perl regex help

2008-06-29 Thread Alexander Burrows
Hello again all. Been a while since I've posted here but needed some help on a regex I was trying to write. $line =~ tr/(\(|\)|<|>)/(\(|\)|\<|\>)/g; This does not work at all in perl so I found so I replaced the tr with s and the search part works as expected but the replace does not. I've been

Re: nginx load balance

2008-06-29 Thread Perrin Harkins
On Sat, Jun 28, 2008 at 9:48 AM, Jeff Peng <[EMAIL PROTECTED]> wrote: > But I have a question, does nginx support for session-keeping? > A user's request, should go always to the same original backend server. > Otherwise the user's session will get lost. I would advise you not to do this. It's a

Re: nginx load balance

2008-06-29 Thread Yuri Pac
nginx as a light http\smtp server. It does not do any specific request logic - it specially designed to minimize request cycle times. On Sun, Jun 29, 2008 at 5:03 AM, <[EMAIL PROTECTED]> wrote: > You can specify 'stickysession' which is the name of the cookie or > request param used for session.