C# Redis實戰(五)

來源:互聯網
上載者:User

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

五、刪除資料在C# Redis實戰(四)中講述了如何在Redis中寫入key-value型資料,本篇將講述如何刪除Redis中資料。   1、void Delete(T entity);刪除函數的運用 [csharp] view plaincopy 
  1. using (var redisClient = RedisManager.GetClient())  
  2. {  
  3.     var user = redisClient.GetTypedClient<User>();  
  4.     var newUser = new User  
  5.     {  
  6.         Id = user.GetAll().Count,  
  7.         Name = txtName.Text,  
  8.         Job = new Job { Position = txtPosition.Text }  
  9.     };  
  10.     user.Delete(newUser);  
  11.   
  12. }  

以上代碼直接刪除了最後一條資料,如下:
2 、void DeleteById(object id);刪除資料函數 [csharp] view plaincopy 
  1. using (var redisClient = RedisManager.GetClient())  
  2.                 {  
  3.                     var user = redisClient.GetTypedClient<User>();  
  4.                     //var newUser = new User  
  5.                     //{  
  6.                     //    Id = user.GetAll().Count,  
  7.                     //    Name = txtName.Text,  
  8.                     //    Job = new Job { Position = txtPosition.Text }  
  9.                     //};  
  10.                     //user.Delete(newUser);  
  11.                     user.DeleteById(txtRedisId.Text);//txtRedisId.Text中為ID值  
  12. }  
如,刪除了ID等於3的一條資料。
3、void DeleteByIds(IEnumerable ids);大量刪除函數 [csharp] view plaincopy 
  1. using (var redisClient = RedisManager.GetClient())  
  2. {  
  3.     var user = redisClient.GetTypedClient<User>();  
  4.     user.DeleteByIds((txtRedisId.Text).ToList());//txtRedisId.Text中為ID值  
  5.   
  6. }  
如,代碼刪除了ID分別為:1、2、6的三條資料。
4 、void DeleteAll();刪除全部資料 [csharp] view plaincopy 
  1. var user = redisClient.GetTypedClient<User>();  
  2.                     user.DeleteAll();//刪除全部資料  
如需轉載,請註明出處,本系列博文樣本程式

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.