Hi,
I don't really know how WO handles the process to the database but I have a weird thing on my mysql server. I am using mysql on Mac OS X. When I run do a show processlist;
mysql> show processlist;
The process list grows and grows with a lot of sleep processes like this
mysql> show processlist; +----+--------+-----------------+-------------------+---------+------+-------+------------------+ | Id | User | Host | db | Command | Time | State | Info | +----+--------+-----------------+-------------------+---------+------+-------+------------------+ | 1 | root | localhost | NULL | Query | 0 | NULL | show processlist | | 27 | user | localhost:61660 | dbname | Sleep | 11 | | NULL | ... ...
Those processes disappear only when I kill this application. Did I miss something in my code or is it normal?
Thank you Sebastien
|