MYSQL implements sample code to prevent duplicate addition when adding shopping cart

MYSQL implements sample code to prevent duplicate addition when adding shopping cart

Preface

Recently, due to work reasons, I was working on the APP shopping cart order payment. A bug was found during testing. When I clicked Add to Cart quickly, the same product appeared twice in the shopping cart.

Because when adding to the shopping cart, there are two steps. The first step is to determine whether the product to be added to the shopping cart is already in the shopping cart. If it is, add one to the original quantity. If not, add it again.

Because the two steps are not atomic operations, there is a multi-threaded security issue. I won’t say much below. Let’s follow the editor to look at the detailed solution process, which will be of some help to you.

MySQL insert has a more advanced operation

Sample code:

INSERT INTO t_xs_shopping_cart (
 user_id,
 shop_id,
 commodity_id,
 quantity
)
VALUES 
 (71, 67, 140201057403511024, 1) ON DUPLICATE KEY UPDATE quantity = quantity + 1

When the unique key constraint takes effect, the update statement will be executed to increase the quantity by 1

Summarize

The above is the full content of this article. I hope that the content of this article can bring some help to your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • Several ways to add timestamps in MySQL tables
  • How to add indexes to MySQL
  • How to create a stored procedure in MySQL and add records in a loop
  • Summary of MySQL's commonly used SQL statements for creating tables, adding fields, modifying fields, and adding indexes
  • How to add fields and comments to a table in sql

<<:  What is this in JavaScript point by point series

>>:  Detailed explanation of how CocosCreator system events are generated and triggered

Recommend

JS achieves five-star praise case

This article shares the specific code of JS to ac...

Web front-end skills summary (personal practical experience)

1. Today, when I was making a page, I encountered ...

Share JS four fun hacker background effect codes

Table of contents Example 1 Example 2 Example 3 E...

How to use shell to perform batch operations on multiple servers

Table of contents SSH protocol SSH Connection pro...

How to implement form validation in Vue

1. Installation and use First, install it in your...

Tips on disabling IE8 and IE9's compatibility view mode using HTML

Starting from IE 8, IE added a compatibility mode,...

Tomcat parses XML and creates objects through reflection

The following example code introduces the princip...

mysql method to view the currently used configuration file my.cnf (recommended)

my.cnf is the configuration file loaded when MySQ...

How to query or obtain images in a private registry

Docker queries or obtains images in a private reg...

Summary of basic operations for MySQL beginners

Library Operations Query 1.SHOW DATABASE; ----Que...

JavaScript implements simple date effects

The specific code of JavaScript date effects is f...

How to use uni-app to display buttons and search boxes in the top navigation bar

Recently, the company is preparing to develop an ...

Detailed graphic tutorial on installing Ubuntu 20.04 dual system on Windows 10

win10 + Ubuntu 20.04 LTS dual system installation...