Bug in install script

#1
Hello

Version lsws2.1RC3 produce an error message when choosing eaccelerator:
"missing ] in script". in line 191 in lsws2.1RC3/admin/misc/enable_ppa.sh

elif [ $SEL -eq 3]; then //missing space after 3
enablecache eaccelerator

Should have been:

elif [ $SEL -eq 3 ]; then
enablecache eaccelerator
 

mistwang

LiteSpeed Staff
#4
Yes, our Enterprise edition can take advantage of SMP server by lshttpd itself.
Enterprise edition actually is licensed by number of worker processes, not by number of cpu sockets. So LSWS with any number of CPU license can be used on your server, unused CPU will be available to PHP and DB Server.

According to our study, hyper-threading may or may not help with performance at all, you may want to do some performance test with your web application.
 
Top