Re: How to replace non aschii character and replace with blank space

2013-06-27 Thread Lars Dɪᴇᴄᴋᴏᴡ 迪拉斯
'abcd5³³³€€½¼¬trgdg¼5# sf fs ´dg ßdsf' =~ s/\P{ASCII}/\N{SPACE}/gr; __END__ abcd5trgdg 5# sf fs dg dsf In the future, please observe the this mailing list's user guide, your question was off-topic.

Re: mysql connection pooling

2013-06-27 Thread Perrin Harkins
Hi, There is nothing exactly like the database pool in JDBC. However, there are solutions for this problem. The first thing you should do is run a reverse proxy in front of your mod_perl server. That typically reduces the number of mod_perl processes by a factor of 10, i.e. 1000 mod_perl proces

Re: mysql connection pooling

2013-06-27 Thread xiaolan
Thank you Perrin. Yes I should use Nginx as a reverse-proxy for modperl appservers, but I don't yet. I will check it. Thanks. On Fri, Jun 28, 2013 at 3:05 AM, Perrin Harkins wrote: > Hi, > > There is nothing exactly like the database pool in JDBC. However, there > are solutions for this proble