0

I have a Ubuntu-server. It is running Mysql & Apache. I have several request at same time. I I saw processes, by top command. I have 10 Apache process and always one process for Mysql. I understood, sometimes on high traffic conditions, insert in database can`t be done. I think if system creates several process for Mysql, the problem will be solved. How can i do that?

user963587
  • 33
  • 2
  • 6
  • Using a single process to handle all requests or forking a new process for each request can not always be controlled by the user unless the software supports multiple operation mode. – Khaled Nov 28 '11 at 08:20

1 Answers1

-1

Your question is based on a misunderstanding. More processes would just slow things down with inter-process synchronization.

David Schwartz
  • 31,449
  • 2
  • 55
  • 84