C# Redis實戰(四)

來源:互聯網
上載者:User

標籤:blog   http   io   ar   os   sp   for   java   strong   

四、寫入資料在C# Redis實戰(三)中我們已經配置好了web.config程式,並且能通過C#代碼來讀取和管理以上配置資訊。接下來,就可以進行Redis的資料寫入了。Redis中可以用Store和StoreAll分別儲存單條和多條資料,C#中具體代碼如下:  1、儲存多條資料 [csharp] view plaincopy 
  1. protected void btnOpenDB_Click(object sender, EventArgs e)  
  2.        {  
  3.            //System.Diagnostics.Process.Start("D:\\redis\\redis-server.exe");  
  4.            //lblShow.Text = "Redis已經開啟!";  
  5.   
  6.            using (var redisClient = RedisManager.GetClient())  
  7.            {  
  8.                var user = redisClient.GetTypedClient<User>();  
  9.   
  10.                if (user.GetAll().Count > 0)  
  11.                    user.DeleteAll();  
  12.   
  13.                var qiujialong = new User  
  14.                {  
  15.                    Id = user.GetNextSequence(),  
  16.                    Name = "qiujialong",  
  17.                    Job = new Job { Position = ".NET" }  
  18.                };  
  19.                var chenxingxing = new User  
  20.                {  
  21.                    Id = user.GetNextSequence(),  
  22.                    Name = "chenxingxing",  
  23.                    Job = new Job { Position = ".NET" }  
  24.                };  
  25.                var luwei = new User  
  26.                {  
  27.                    Id = user.GetNextSequence(),  
  28.                    Name = "luwei",  
  29.                    Job = new Job { Position = ".NET" }  
  30.                };  
  31.                var zhourui = new User  
  32.                {  
  33.                    Id = user.GetNextSequence(),  
  34.                    Name = "zhourui",  
  35.                    Job = new Job { Position = "Java" }  
  36.                };  
  37.   
  38.                var userToStore = new List<User> { qiujialong, chenxingxing, luwei, zhourui };  
  39.                user.StoreAll(userToStore);                
  40.   
  41.                lblShow.Text = "目前共有:" + user.GetAll().Count.ToString() + "人!";  
  42.            }  
  43.        }  
2 、儲存單條資料 [csharp] view plaincopy 
  1. protected void btnInsert_Click(object sender, EventArgs e)  
  2.         {  
  3.             if (!string.IsNullOrEmpty(txtName.Text) && !string.IsNullOrEmpty(txtPosition.Text))  
  4.             {  
  5.                 using (var redisClient = RedisManager.GetClient())  
  6.                 {  
  7.                     var user = redisClient.GetTypedClient<User>();  
  8.   
  9.                     var newUser = new User  
  10.                     {  
  11.                         Id = user.GetNextSequence(),  
  12.                         Name = txtName.Text,  
  13.                         Job = new Job { Position = txtPosition.Text }  
  14.                     };                    
  15.                     user.Store(newUser);  
  16.                      
  17.                     if (user.GetAll().Count > 0)  
  18.                     {  
  19.                         var htmlStr = string.Empty;  
  20.                         foreach (var u in user.GetAll())  
  21.                         {  
  22.                             htmlStr += "<li>ID=" + u.Id + "  姓名:" + u.Name + "  所在部門:" + u.Job.Position + "</li>";  
  23.                         }  
  24.                         lblPeople.Text = htmlStr;  
  25.                     }  
  26.                     lblShow.Text = "目前共有:" + user.GetAll().Count.ToString() + "人!";  
  27.                 }  
  28.             }  
  29.         }  

如需轉載,請註明出處,本系列博文樣本程式

C# Redis實戰(四)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.