I'm building a very slimmed down website. And I would like to know what I can do, to improve performance as much as possible.
The site should do something like,
- fetch a header from the request.
- make an asynchronous SOAP call.
- redirect the request to another server.
To be able to do this I also need to be able to use the cache. So! What can I do to improve the performance of this small service? What HttpModules can I unload? Should I use a webform page? Should I write a HttpHandler? Are there any other tips?
I know this is might be pseudo optimizing, but this service will be under very heavy load for short times and I would like to know that I did as much as I could.