bogdanbrudiu
bogdanbrudiu

Reputation: 564

castle monorails no simultaneous requests from the same user

I have created an website in Castle Monorails and the users that are using the site are complaining that it is very slow so I have done some investigations with fiddler and I discovered that the requests (from the same user) are not simultaneous. I have tried to use but it is not working and it seams that Castle monorail does not support this. Do you have any suggestions/solutions/workaround for this problem?

Upvotes: 0

Views: 133

Answers (1)

Mauricio Scheffer
Mauricio Scheffer

Reputation: 99730

Wild guess: you're loading all the javascript files included in MonoRail ($Ajax.InstallScripts(), $Scriptaculous.InstallScripts(), etc) at the top of your main layout. Javascript blocks and these scripts in particular are pretty big so the slowdown gets very noticeable.

If this is not the case, post more information, like fiddler screenshots, MonoRail version.

In any case, it's very unlikely that the problem is caused by MonoRail.

Upvotes: 1

Related Questions