search
HomeJavajavaTutorialHow to apply CAS in java

How to apply CAS in java

Apr 18, 2023 pm 06:37 PM
javacas

How to apply CAS in java

CAS explanation:

CAS (compare and swap), compare and swap. A mechanism that can solve the performance loss caused by using locks in multi-thread parallel situations. The CAS operation contains three operands—memory location (V), expected original value (A) and new value (B). If the value of a memory location matches the expected original value, the processor automatically updates the location to the new value. Otherwise, the processor does nothing. A thread gets the num value from the main memory and operates on num. When writing the value, the thread will compare the first num value obtained with the num value in the main memory. If they are equal, the changed value will be num is written into the main memory. If they are not equal, the comparison will be looped until successful.

CAS generation:

The volatile keyword is often used when modifying shared variables, but the volatile value has visibility and prohibits instruction reshooting (orderliness), and atomicity cannot be guaranteed. Although there is no problem in single thread, various problems will occur in multi-threading, causing on-site insecurity. Therefore, CAS was produced after jdk1.5 and uses CPU primitives (indivisible, continuous and uninterrupted) to ensure the atomicity of on-site operations.

CAS application:

The new java.util.concurrent(JUC) in JDK1.5 is built on CAS. Compared with the synchronized lock mechanism, CAS is a common implementation of non-blocking algorithms. Therefore, JUC has greatly improved its performance.

For example, the AtomicInteger class, AtomicInteger is thread-safe, the following is the source code

How to apply CAS in java

How to apply CAS in java

Enter unsafe and see do while Self-looping, the self-looping here is to judge that if the expected original value does not match the original value, it will recycle to get the original value, and then go through the CAS process until the new value can be assigned successfully.

CAS Advantages

cas is an optimistic locking idea, and it is a non-blocking lightweight optimistic lock. Non-blocking means that the failure or suspension of a thread will not Algorithms that should affect other threads' failures or hangs.

CAS Disadvantages

  1. The cycle time is long, the overhead is large, and it takes up CPU resources. If the spin lock fails for a long time, it will bring a lot of overhead to the CPU. If the JVM can support the pause instruction provided by the processor, the efficiency will be improved to a certain extent. The pause instruction has two functions. First, it can delay the pipeline execution instruction (de-pipeline) so that the CPU does not consume too much execution resources. The amount of delay depends on the implementation, and on some processors the delay is zero. Secondly, it can avoid the CPU pipeline flush caused by memory order violation when exiting the loop, thereby improving the execution efficiency of the CPU.

  2. Only atomic operations on a shared variable can be guaranteed. When performing an operation on a shared variable, we can use cyclic CAS to ensure atomic operations. However, when operating on multiple shared variables, cyclic CAS cannot guarantee the atomicity of the operation. In this case, you can use a lock, or have a The trick is to merge multiple shared variables into one shared variable for operation. For example, there are two shared variables i=2, j=a, merge ij=2a, and then use CAS to operate ij. Starting from Java 1.5, JDK provides the AtomicReference class to ensure the atomicity between reference objects. You can put multiple variables in one object to perform CAS operations.

  3. ABA problem

Solving the ABA problem (if the value is to consider the ending, you can ignore the problem without considering the process)

  1. Add version number

  2. AtomicStampedReference
    How to apply CAS in java

Provided in the atomic package of JDK starting from Java1.5 A class AtomicStampedReference is created to solve the ABA problem. The compareAndSet method of this class is to first check whether the current reference is equal to the expected reference, and whether the current flag is equal to the expected flag. If all are equal, then atomically set the value of the reference and the flag to the given update value.

Timing of using CAS

  1. If the number of threads is small and the waiting time is short, spin lock can be used for CAS to try to get the lock, which is more efficient than synchronized.

  2. The number of threads is large and the waiting time is long. It is not recommended to use spin locks and consumes a lot of CPU

The above is the detailed content of How to apply CAS in java. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:亿速云. If there is any infringement, please contact admin@php.cn delete
How do I use Maven or Gradle for advanced Java project management, build automation, and dependency resolution?How do I use Maven or Gradle for advanced Java project management, build automation, and dependency resolution?Mar 17, 2025 pm 05:46 PM

The article discusses using Maven and Gradle for Java project management, build automation, and dependency resolution, comparing their approaches and optimization strategies.

How do I create and use custom Java libraries (JAR files) with proper versioning and dependency management?How do I create and use custom Java libraries (JAR files) with proper versioning and dependency management?Mar 17, 2025 pm 05:45 PM

The article discusses creating and using custom Java libraries (JAR files) with proper versioning and dependency management, using tools like Maven and Gradle.

How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache?How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache?Mar 17, 2025 pm 05:44 PM

The article discusses implementing multi-level caching in Java using Caffeine and Guava Cache to enhance application performance. It covers setup, integration, and performance benefits, along with configuration and eviction policy management best pra

How can I use JPA (Java Persistence API) for object-relational mapping with advanced features like caching and lazy loading?How can I use JPA (Java Persistence API) for object-relational mapping with advanced features like caching and lazy loading?Mar 17, 2025 pm 05:43 PM

The article discusses using JPA for object-relational mapping with advanced features like caching and lazy loading. It covers setup, entity mapping, and best practices for optimizing performance while highlighting potential pitfalls.[159 characters]

How does Java's classloading mechanism work, including different classloaders and their delegation models?How does Java's classloading mechanism work, including different classloaders and their delegation models?Mar 17, 2025 pm 05:35 PM

Java's classloading involves loading, linking, and initializing classes using a hierarchical system with Bootstrap, Extension, and Application classloaders. The parent delegation model ensures core classes are loaded first, affecting custom class loa

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor