詳解MongoDB實現儲存物理檔案和SQUID加速

來源:互聯網
上載者:User

之前在閱讀MongoDB GFS文檔時,學習了它如何儲存物理檔案包括大檔案)的方式。為了加深印象,專門寫了一個上傳檔案儲存體到Mongodb的樣本。當然後因為是儲存到文檔資料庫中,所以就不能用普通方式來訪問這些物理檔案了,這裡又專門寫了一個aspx頁面專門讀取這些檔案比片或MP3等),所以下載樣本之後會看到兩個頁面,一個是uploadfile.aspx(上傳),一個是getfile.aspx從mongodb中把檔案以流的方式讀出來)。當然考慮到訪問速度,這裡還引入了SQUID來進行檔案加速當前SQUID預設只緩衝靜態檔案,所以這裡要對ASPX頁面的輸出進行一下設定,這些都會在本文中進行介紹)

首先介紹一下開發環境,我使用的是VS2008+SP1 ,mongodb用戶端軟體用的是samus-mongodb最新版本即可)

添加對下面名空間的引用

 
  1. using MongoDB;  
  2. using MongoDB.GridFS; 

下面是上傳檔案的主要代碼:

uploadfile.aspx.cs    

 
  1. HttpPostedFile myFile = FileUpload.PostedFile;  
  2.      int nFileLen = myFile.ContentLength;  
  3.        
  4.      byte[] myData = new Byte[nFileLen];  
  5.      myFile.InputStream.Read(myData, 0, nFileLen);  
  6.        
  7.      GridFile fs = new GridFile(DB, filesystem);  
  8.  
  9.      Random random = new Random(unchecked((int)DateTime.Now.Ticks));  
  10.  string newfilename = string.Format("{0}{1}{2}", random.Next(1000, 99999), 
  11. random.Next(1000, 99999), System.IO.Path.GetExtension(myFile.FileName));  
  12.      GridFileStream gfs = fs.Create(newfilename);  
  13.      gfs.Write(myData, 0, nFileLen);  
  14.      gfs.Close(); 

這裡只是給上傳檔案起個隨機名稱,這樣如果一切正常,就可以在資料庫中找到該檔案了,如:

    

下面看一下如何訪問上傳的物理檔案getfile.aspx.cs通過傳遞filename參數,mongodb中相應欄位結構,如):

 
  1. protected void Page_Load(object sender, EventArgs e)  
  2.      {  
  3.          if (!string.IsNullOrEmpty(Request.QueryString["filename"]))  
  4.          {  
  5.              string filename = Request.QueryString["filename"];  
  6.              Init();  
  7.              String filesystem = "gfstream";  
  8.  
  9.              GridFile fs = new GridFile(DB, filesystem);  
  10.              GridFileStream gfs = fs.OpenRead(filename);  
  11.  
  12.              Byte[] buffer = new Byte[gfs.Length];  
  13. HttpContext.Current.Response.AddHeader("Expires", DateTime.Now.AddDays(20).ToString("r"));  
  14.              HttpContext.Current.Response.AddHeader("Cache-Control", "public");  
  15.         
  16.              // 需要讀的資料長度  
  17.              long dataToRead = gfs.Length;  
  18.              int length;  
  19.              while (dataToRead > 0)  
  20.              {  
  21.                  // 檢查用戶端是否還處於串連狀態  
  22.                  if (HttpContext.Current.Response.IsClientConnected)  
  23.                  {  
  24.                      length = gfs.Read(buffer, 0, 10000);  
  25.           HttpContext.Current.Response.OutputStream.Write(buffer, 0, length);  
  26.                      HttpContext.Current.Response.Flush();  
  27.                      buffer = new Byte[10000];  
  28.                      dataToRead = dataToRead - length;  
  29.                  }  
  30.                  else 
  31.                  {  
  32.                      // 如果不再串連則跳出死迴圈  
  33.                      dataToRead = -1;  
  34.                  }  
  35.              }  
  36.              gfs.Dispose();  
  37.              HttpContext.Current.Response.End();  
  38.          }  
  39.      } 

下面就是以列表的方式從mongodb中檢索檔案清單的最終的運行效果:

    

儘管MONGODB的並發效能很不錯,但每次都去mongodb取的話也是有效能損耗的,特別是對於不經常變化的物理檔案,所以這裡使用了SQUID來進行檔案快取。當前SQUID預設只支援靜態檔案,對於本樣本中的ASPX頁面輸出的流資訊來緩衝還要進行一下設定。    

首先,如果在squid.conf檔案中有如下行,需要用#進行注釋它會禁止緩衝所有帶?的連結地址):

 
  1. hierarchy_stoplist cgi-bin ? \.php \.html  
  2. acl QUERY urlpath_regex cgi-bin \? \.php \.html     
  3. cache deny QUERY 

這樣,再修改一下相應的.aspx,並在Header中添加如下資訊,即:    

 
  1. HttpContext.Current.Response.AddHeader("Expires", DateTime.Now.AddDays(20).ToString("r"));  
  2. HttpContext.Current.Response.AddHeader("Cache-Control", "public"); 

這樣SQUID就會忠實在根據該頭資訊來CACHED相應檔案了。

當然也可以用如下方式來讓指定那些檔案aspx檔案才會被SQUID CACHED:   

 
  1. acl CACHABLE_PAGES urlpath_regex \getfile.aspx  
  2.    #允許cache上面的aspx頁面  
  3.    no_cache allow CACHABLE_PAGES 

而下面一個acl匹配所有的動態網頁面並禁止緩衝所有aspx頁面

 
  1. #acl NONE_CACHABLE_PAGES urlpath_regex \? \.aspx     
  2.     #禁止cache其它的aspx頁面  
  3.     #no_cache deny NONE_CACHABLE_PAGES 

下面幾行設定頁面cache的時間長度,第一行cache一天,第二行cache兩分鐘

 
  1. refresh_pattern ^http://10.0.4.114:1100/mongodbsample/getfile.aspx 1440 0% 1440 ignore-reload  
  2. refresh_pattern ^http://10.0.4.114:1100/mongodbsample/getfile.aspx 2 0% 2 ignore-reload 

如要SQUID配置正確的話,只要訪問SQUID所請求代理的網站本文中為http://10.0.4.85:8989/mongodbspame/uploadfile.aspx),這裡它就會到http://10.0.4.114:1100/mongodbspame/uploadfile.aspx去擷取頁面資訊,同時對該頁面中的連結getfile.aspx檔案均會進行緩衝,如:

    

好了,今天的內容就先到這裡了,樣本源碼及SQUID設定檔下載連結:/Files/daizhj/mongodbsample.rar

原文標題:使用Mongodb儲存上傳物理檔案並進行SQUID加速(基於aspx頁面)

連結:http://www.cnblogs.com/daizhj/archive/2010/08/19/1803454.html

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.