In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-09-22 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/03 Report--
The implementation of similar second kill by Redis+lua
Due to the need of the project, multi-thread is needed to obtain and modify the inventory of the database. Considering the low efficiency of locking the database, redis+lua is used to implement it.
Redis's single-threaded operation feature executes lua scripts and ensures atomicity through lua scripts. If you make changes through simple redis instructions, there will be the problem of multithreaded concurrent updates between reading and writing.
1. First define the redis data structure
GoodId: {"total": 100, "released": 0;} where goodId is the commodity id number, according to which you can query the relevant data structure information. Total is the total number, released is the quantity issued, and available number is total-released.
two。 Write lua scripts local n = tonumber (ARGV [1]) if not n or n = 0 thenreturn 0endlocal vals = redis.call ("HMGET", KEYS [1], "total", "released"); local total = tonumber (vals [1]) local blocked = tonumber (vals [2]) if not total or not blocked thenreturn 0endif blocked + n database
In view of the update from redis to databases, I have thought about it for a long time, but I haven't found a better solution. I first adopt the asynchronous update of scheduled tasks. As for the question of whether data is lost, if redis dies, redis will recover the data after restart, and the data in the database can be kept consistent with the next scheduled task. The disadvantage is that if redis fails, flash sale activity will fail.
As for how to drive redis to database updates, list two folks:
Redis keeps a list of related hash keys and reads updates by reading the list table and reading updates by streaming the tables in databases.
You are welcome to ask questions. Thank you for reading.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
The market share of Chrome browser on the desktop has exceeded 70%, and users are complaining about
The world's first 2nm mobile chip: Samsung Exynos 2600 is ready for mass production.According to a r
A US federal judge has ruled that Google can keep its Chrome browser, but it will be prohibited from
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
About us Contact us Product review car news thenatureplanet
More Form oMedia: AutoTimes. Bestcoffee. SL News. Jarebook. Coffee Hunters. Sundaily. Modezone. NNB. Coffee. Game News. FrontStreet. GGAMEN
© 2024 shulou.com SLNews company. All rights reserved.