Feature Requests: Browse | Submit New | Admin
From what i understand the newer version of ruby supports multi threading the issue I'm running into is that my webserver gets so much traffic the app cannot keep cause instead of using all 4 available cpu cores it pins one core at 100% Any thoughts? If I could do it myself I would by I'm retarded when it comes to this stuff.
Add A Comment:
Date: 2008-07-27 07:11 Sender: Erlend Simonsen Ruby isn't the fastest language around, but 1.9 is supposedly quite a bit faster even if you don't use threads. I have no idea if ruby-opengl and net-ssh support 1.9, though, so I'm not sure it's even possible at this time. -- Erlend
Date: 2008-07-26 20:26 Sender: George Swinnerton You could try making your website less popular? ;) You would need to rewrite sections of the code to use threads. The impression I get is that this would be trickier than it might otherwise of been due to some of the objects referencing global variables.