好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

使用队列和线程对现有asp.net动态页处理进行资源控制

使用队列和线程对现有asp.net动态页处理进行资源控制

使用队列和线程对现有asp.net动态页处理进行资源控制

IIS可以对ASP.NET站点进行一个资源控制,包括使用的CPU,处理进程数等.但如果想对某些动态页面进行一个资源限制,只允许固定线程数量来处理某些动态请求,而不至于在某些情况个别的动态请求把整个站的资源都占光了.对于这么小的粒度控制显然不适合由IIS来做,这个时候就可以通过asp.net提供IHttpAsyncHandler来解决这种事情.

处理结构

由于Asp.net提供了异步处理Handler,所以可以在Handler的Begin处理方法中把具体对象存放到队列中,然后根据实际业务的需要来配置1-N个线程来处理相关请求.

IHttpAsyncHandler

?

public   interface   IHttpAsyncHandler : IHttpHandler

     {

         /// <summary>Initiates an asynchronous call to the HTTP handler.</summary>

         /// <returns>An <see cref="T:System.IAsyncResult" /> that contains information about the status of the process.</returns>

         /// <param name="context">An <see cref="T:System.Web.HttpContext" /> object that provides references to intrinsic server objects (for example, Request, Response, Session, and Server) used to service HTTP requests. </param>

         /// <param name="cb">The <see cref="T:System.AsyncCallback" /> to call when the asynchronous method call is complete. If <paramref name="cb" /> is null, the delegate is not called. </param>

         /// <param name="extraData">Any extra data needed to process the request. </param>

         IAsyncResult BeginProcessRequest(HttpContext context, AsyncCallback cb, object   extraData);

         /// <summary>Provides an asynchronous process End method when the process ends.</summary>

         /// <param name="result">An <see cref="T:System.IAsyncResult" /> that contains information about the status of the process. </param>

         void   EndProcessRequest(IAsyncResult result);

     }

从代码来看IHttpAsyncHandler也是从IHttpHandler派生下来,并提供了Begin和End相关方法.

对已有页面进行异步封装

如果经常用IHttpHandler的朋友应该比较清楚这东西用于描述一个页面请求的,包括我们的aspx,而aspx默认处理的则是一个IHttpHandlerFactory实现System.Web.UI.PageHandlerFactory.通简单地继承System.Web.UI.PageHandlerFactory就可以让原来的aspx请求返回对应的异步的HttpHandler.

?

public   class   CustomPageFactory : System.Web.UI.PageHandlerFactory

     {

         static   CustomPageFactory()

         {

             

         }

         

         public   override   IHttpHandler GetHandler(HttpContext context, string   requestType, string   virtualPath, string   path)

         {

             AspxAsyncHandler handler = new   AspxAsyncHandler( base .GetHandler(context, requestType, virtualPath, path));

             return   handler;

         }

     }

PageFactory实现后只需要简单地配置一个web.config文件就可以让现有的aspx处理由异步Handler来处理.

?

< handlers >

    < add   name = "custompage"   verb = "*"   path = "*.aspx"   type = "WebApp.Code.CustomPageFactory,WebApp" />

</ handlers >

队列化处理

制定队列的目的非常简单就是有序可控地去处理一些工作,可以通过 BeginProcessRequest的执行把请求先存放到了列中

?

public   IAsyncResult BeginProcessRequest(HttpContext context, AsyncCallback cb, object   extraData)

         {

             AspxAsyncResult result = new   AspxAsyncResult(context, mHandler, cb);

             G_TaskQueue.Add(result);

             return   result;

         }

制定线程处理

可以根据实际情况开启1-N个线程来处理队列中的工作.

?

private   void   OnRun( object   state)

         {

                 while   ( true )

                 {

                     AspxAsyncResult asyncResult = Pop();

                     if   (asyncResult != null )

                     {

                         asyncResult.Execute();

                     }

                     else

                     {

                         System.Threading.Thread.Sleep(10);

                     }

                 }

         }

以上是固定线程去进行处理,但这样的设计不好的地方就是没有请求的时候线程会不停地做sleep工作,其实可以根据实际情况使用线程池来完成,具体就看情况来设计了.

总结

通过以上设计就可以轻易地对某些页面请求进行一个资源控制.如果比较关心具体实现的朋友可以查看

http://blog.henryfan.net/post/2012/11/21/%E5%AE%9E%E7%8E%B0%E5%AF%B9%E7%8E%B0%E6%9C%89%E7%9A%84aspx%E8%AF%B7%E6%B1%82%E8%BF%9B%E8%A1%8C%E5%BC%82%E6%AD%A5%E9%98%9F%E5%88%97%E6%8E%A7%E5%88%B6%E5%A4%84%E7%90%86.aspx

 

可靠、高性能的Socket TCP通讯组件
开源数据库访问组件

作者: Leo_wl

    

出处: http://www.cnblogs.com/Leo_wl/

    

本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。

版权信息

查看更多关于使用队列和线程对现有asp.net动态页处理进行资源控制的详细内容...

  阅读:38次