I have a C# ASP.NET MVC REST web service. The webservice has two major paths/routes. One for admin, one for users. There users are typically 1-2 admin users, and all other users are normal. When there is a lot of traffic, the server becomes slow to respond. Currently, this means that the admin users requests are slow just like regular users. I want the admin users requests (which use a particular route) to have top priority such that the admin requests are fast, as if there was no load on the server. A way to think about this is I want to create VIP access for admins.I have a C# ASP.NET MVC REST web service. The w