-
Andy,
Thanks for you Poll module, I've enjoyed it much. However, I faced a problem while using it. If I run 50 concurrent connections, apache (or whatever part of it) falls into a strange state. There are 2 threads in "W" state, according to /server-status information, which do not die. Further requests to .py files make mod_python work, but no content is ever sent to the client...
2004-11-28 14:15:33 UTC in MySQL for Python
-
Hi, I have had the following picture on my Windows XP:
c:\bin>openload.exe localhost 68
URL: http://localhost:80/
Clients: 68
^C
c:\bin>openload.exe localhost 67
URL: http://localhost:80/
Clients: 67
MaTps 143.86, Tps 143.86, Resp Time 0.314, Err 0%, Count 144
MaTps 145.12, Tps 156.53, Resp Time 0.454, Err 0%, Count 301
MaTps 146.15, Tps 155.38, Resp Time 0.418, Err.
2004-11-27 10:36:46 UTC in OpenWebLoad
-
Thanks Andy, it works like clock!
2004-11-24 21:18:41 UTC in MySQL for Python
-
Andy,
I've compiled _mysql.c against 4.1.7 installation, but problem did not go away. Well, it changed a bit. When running openload now, it seems to hang, i.e. gives no result, while apache continues to werk ok. Then I ran two parallel wgets in cycle, and after a few seconds Apache crashed like before.
Could you possibly suggest where problem may be, out of your programming experience?...
2004-11-24 19:54:42 UTC in MySQL for Python
-
If it involves compilation on win32 then I'm stuck. :( I have no tools to compile these files on win32 I think.. Thought switching to 4.0 mysql would help but it did not. Well, I'll try finding suitably compiled versions, thanks anyway.
Yuri.
2004-11-22 22:32:02 UTC in MySQL for Python
-
Hello.
I'm running win32 apache 2.0.52, python 2.3, MySQL-python-1.0.0.win32-py2.3.zip and MySQL 4.1.7, all pre-compiled.
When I use openload on my test.py script (see below), apache simply crashes, but all's ok with consequent requests.
As I understand it has something to do with thread-safety somewhere.. I would be grateful if somebody could explain how to avoid this problem...
2004-11-21 21:39:57 UTC in MySQL for Python
-
Hello,
I would be greateful if somebody would tell me what program people use to bring editor/js/ files into human-readable format.
Right now there are some "bugs" (2.0b1), which I'd like to investigate and fix if there will be time, but the code is totally unreadable...
Thanks in advance,
Yuri.
2004-07-21 13:46:50 UTC in FCKeditor
-
retrieveBrowserVersion() uses a weird indexOf(" ") , which is wrong for Mozilla 1.7.
Fixed version:
private double retrieveBrowserVersion(String userAgent) {
if(userAgent.indexOf("msie")>-1) {
String str = userAgent.substring(userAgent.indexOf("msie") + 5);
return Double.parseDouble(str.substring(0, str.indexOf(";")));
}
else {.
2004-07-20 12:38:32 UTC in FCKeditor
-
SIM 0.9.1 (Using KDE 3.1.4)
I go to "Setup -> Interface -> Fonts" and change
Helvetica to Arial in both fields, then press Apply and
fonts do change. However, when I press OK and the
dialogue window closes, Sim changes fonts back to
Helvetica. The only thing which remains proper is font
size.
2003-11-26 13:42:43 UTC in SIM
-
Hi...
I have an object with a many-to-one mapping, but this link is broken - the ID doesn't exist in the database. When Hibernate tries to load my object, it fails, because the link is broken - says "No such row with ... exists".
So, is there an easy way to load an object without loading its many-to-one dependencies? Somehow by just telling something magical to the Hibernate...
2003-07-17 11:25:52 UTC in Hibernate