Basic Tutorials of Redis(8) -Transaction
Data play an important part in our project,how can we ensure correctness of the data and prevent the data
from error.In relational database, we are famillar with the usage of transaction.
begin
opreations
commit/rollback
But there are some differences between the Redis and relational database.Let's introduce the commands
first.There are only 5 commands to use while you use the transaction in redis.
I want to take an example to show you how to use the transaction.So here is the backgroud.There are three
persons and they want to buy the apple from the shop.The key for buying apple is the amount.
For this example,I use the hash to store the infomation of the users and the products.I use the string to store
the totalmoney for the trade.The following picture shows this example's initial data.
Let's start to finish this example.The first step is to initialize the data.
hmset user-1 name tom money 200 hmset user-2 name jack money 300 hmset user-3 name paul money 500 hmset product-1 name apple price 150 amount 2 set totalmoney 0
Tom wants to buy the apple,so the product-1's amount should decrease by one,tom's money should decrease
by 150 and the totalmoney should increase by 150.The action buy includes three steps.We should check up the
product-1 with buy action.
watch product-1 multi hincrby product-1 amount -1 hincrby user-1 money -150 incrby totalmoney 150 exec
You will find that after the command multi ,the commands before exec all return queued.It means that those
commands store in a queue.After exec command,the client send this queue to the server and execute the commands.
But this is a normal situation that the amount is not changed before the transaction execute.
this,we need another client to imitate paul takes first.Before execute the transaction of jack's action,we decrease the
amount of product-1 to imitate paul buy the apple first.After executing the transaction of jack's action,the client returns
(nil) meaning the transaction of jack's action executed fail and the three commands didn't execute too.
This example shows the basic usage of transaction in redis.It is suitable for many questions.
execute the command exec will return an error.Because the multi didn't exists in this session.
Now I will show you how to use the transaction in StackExchange.Redis.
1 //Initiate the data 2 db.HashSet("user-1", new HashEntry[2] { new HashEntry("name", "tom"), new HashEntry("money", 200) }); 3 db.HashSet("user-2", new HashEntry[2] { new HashEntry("name", "jack"), new HashEntry("money", 300) }); 4 db.HashSet("user-3", new HashEntry[2] { new HashEntry("name", "paul"), new HashEntry("money", 500) }); 5 db.HashSet("product-1", new HashEntry[3] { new HashEntry("name", "apple"), new HashEntry("price", 150),new HashEntry("amount", 2) }); 6 db.StringSet("totalmoney", 0); 7 8 //multi 9 var tran = db.CreateTransaction(); 10 //watch 11 tran.AddCondition(Condition.HashEqual("product-1", "amount", "2")); 12 13 tran.HashDecrementAsync("product-1", "amount"); 14 tran.HashDecrementAsync("user-1", "money", 150); 15 tran.StringIncrementAsync("totalmoney", 150); 16 17 Console.WriteLine(string.Format("execute the transaction {0}!", tran.Execute() ? "Y" : "N")); 18 19 //multi 20 var tran2 = db.CreateTransaction(); 21 //watch 22 tran.AddCondition(Condition.HashEqual("product-1", "amount", "1")); 23 24 tran.HashDecrementAsync("product-1", "amount"); 25 tran.HashDecrementAsync("user-2", "money", 150); 26 tran.StringIncrementAsync("totalmoney", 150); 27 28 //paul take first 29 db.HashDecrement("product-1", "amount"); 30 31 Console.WriteLine(string.Format("execute the transaction {0}!", tran.Execute() ? "Y" : "N"));
Debuging the code ,you will see the result as follow.

【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· [AI/GPT/综述] AI Agent的设计模式综述