Posts by Herberson Miranda • 56 points
5 posts
-
0
votes2
answers48
viewsA: Apache slave server
You can implement a Balancer load to split requests into more servers, you can also use an intermediate cache server to decrease connections with apache. Att.
-
-3
votes1
answer1207
viewsA: Mysql error 2002 connection refused
To solve this problem, just follow the following steps. First of all we will install the database in Mysql: # mysql_install_db Then you need to generate the Sock: # chown -R mysql.mysql…
-
1
votes2
answers316
viewsA: Dedicated server X VPS. How to know which one fits a certain situation?
A dedicated server or VPS will provide you with acceptable results, the difference is that a dedicated server is a physical machine and the VPS is a virtual machine. I consider a VPS an option…
-
-2
votes6
answers1170
viewsA: Why is it not possible to define an interface with static methods?
It is not possible because an interface cannot be instantiated as a concrete class or it has no constructor method, when trying to access a static method internally class and instantiated and is…
-
4
votes1
answer2476
viewsQ: Why is Pattern Open Session In View considered an anti-pattern?
I wonder why many developers and architects consider the standard Open Session In View one anti-pattern?