Actions
Defect #24819
closedRedmine is very slow during peak hours
Status:
Closed
Priority:
Normal
Assignee:
-
Category:
UI
Target version:
-
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Invalid
Affected version:
Description
Hi,
We use redmine services for ticketing tool.
But we see that redmine is very slow specially showing the UI during peak hours means when multiple users logged in and multiple issues are logged.
Can you please advise on the same.
We use webrick as webserver,is that the reason behind this?
Regards,
Koushik
Updated by Go MAEDA almost 8 years ago
- Status changed from New to Closed
- Priority changed from High to Normal
- Resolution set to Invalid
Please use forum for questions.
We use webrick as webserver,is that the reason behind this?
It is the cause of the problem.
Please read: https://devcenter.heroku.com/articles/ruby-default-web-server#why-not-webrick
By default WEBrick is single threaded, single process. This means that if two requests come in at the same time, the second must wait for the first to finish.
Actions