Java uses three methods to implement high-concurrency lock sample code
This article mainly introduces the three implementation example codes of Java high concurrency lock. The editor thinks it is quite good, so I will share it with you now and give it as a reference. Let’s follow the editor and take a look.
Basic skills - optimistic lock
Optimistic lock is suitable for such a scenario: there will be no conflict in reading, but there will be conflict in writing. The frequency of simultaneous reads is much greater than that of writes.
Take the following code as an example, the implementation of pessimistic locking:
public Object get(Object key) { synchronized(map) { if(map.get(key) == null) { // set some values } return map.get(key); } }
The implementation of optimistic locking:
public Object get(Object key) { Object val = null; if((val = map.get(key) == null) { // 当map取值为null时再加锁判断 synchronized(map) { if(val = map.get(key) == null) { // set some value to map... } } } return map.get(key); }
Intermediate skill - String.intern()
Optimistic locking cannot solve a large number of write conflicts very well, but in many scenarios, the lock is actually only for a certain user Or an order. For example, a user must create a session before performing subsequent operations. However, due to network reasons, the request to create a user session and subsequent requests arrive almost at the same time, and parallel threads may process subsequent requests first. In general, the user sessionMap needs to be locked, such as the optimistic lock above. In this scenario, the lock can be limited to the user itself, that is, changed from the original
lock.lock(); int num=storage.get(key); storage.set(key,num+1); lock.unlock();
to:
lock.lock(key); int num=storage.get(key); storage.set(key,num+1); lock.unlock(key);
This is similar to the concepts of database table locks and row locks. Obviously, the concurrency capability of row locks is much higher than that of table locks.
Using String.inter() is a specific implementation of this idea. Class String maintains a pool of strings. When the intern method is called, if the pool already contains a string equal to this String object (as determined by the equals(Object) method), the string in the pool is returned. It can be seen that when the Strings are the same, String.intern() always returns the same object, so locking the same user is achieved. Since the granularity of the lock is limited to specific users, the system achieves maximum concurrency.
public void doSomeThing(String uid) { synchronized(uid.intern()) { // ... } }
CopyOnWriteMap?
Now that we have talked about "a concept similar to row locks in a database", we have to mention MVCC. The CopyOnWrite class in Java implements MVCC. Copy On Write is such a mechanism. When we read shared data, we read it directly without synchronization. When we modify the data, we copy a copy of the current data, and then modify it on this copy. After completion, we use the modified copy to replace the original data. This method is called Copy On Write.
But,,, JDK does not provide CopyOnWriteMap, why? There is a good answer below, that is, we already have ConcurrentHashMap, why do we need CopyOnWriteMap?
Fredrik Bromee wrote
I guess this depends on your use case, but why would you need a CopyOnWriteMap when you already have a ConcurrentHashMap?
For a plain lookup table with many readers and only one or few updates it is a good fit.
Compared to a copy on write collection:
Read concurrency:
Equal to a copy on write collection. Several readers can retrieve elements from the map concurrently in a lock-free fashion.
Write concurrency:
Better concurrency than the copy on write collections that basically serialize updates (one update at a time). Using a concurrent hash map you have a good chance of doing several updates concurrently. If your hash keys are evenly distributed.
If you do want to have the effect of a copy on write map, you can always initialize a ConcurrentHashMap with a concurrency level of 1.
Advanced Tips - Class ConcurrentHashMap
The flaw of String.inter() is that the String class maintains a string pool. Placed in the JVM perm area, if the number of users is particularly large, the String placed in the string pool will be uncontrollable, which may lead to OOM errors or excessive Full GC. How can we control the number of locks and reduce the granularity of locks at the same time? Use Java ConcurrentHashMap directly? Or do you want to add your own more granular control? Then you can learn from ConcurrentHashMap, divide the objects that need to be locked into multiple buckets, and add a lock to each bucket. The pseudo code is as follows:
Map locks = new Map(); List lockKeys = new List(); for(int number : 1 - 10000) { Object lockKey = new Object(); lockKeys.add(lockKey); locks.put(lockKey, new Object()); } public void doSomeThing(String uid) { Object lockKey = lockKeys.get(uid.hash() % lockKeys.size()); Object lock = locks.get(lockKey); synchronized(lock) { // do something } }
The above is the detailed content of Java uses three methods to implement high-concurrency lock sample code. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Guide to Perfect Number in Java. Here we discuss the Definition, How to check Perfect number in Java?, examples with code implementation.

Guide to Weka in Java. Here we discuss the Introduction, how to use weka java, the type of platform, and advantages with examples.

Guide to Smith Number in Java. Here we discuss the Definition, How to check smith number in Java? example with code implementation.

In this article, we have kept the most asked Java Spring Interview Questions with their detailed answers. So that you can crack the interview.

Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation? Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems. Further reading: Java Stream API improvements Understand Stream forEach The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is

Guide to TimeStamp to Date in Java. Here we also discuss the introduction and how to convert timestamp to date in java along with examples.

Capsules are three-dimensional geometric figures, composed of a cylinder and a hemisphere at both ends. The volume of the capsule can be calculated by adding the volume of the cylinder and the volume of the hemisphere at both ends. This tutorial will discuss how to calculate the volume of a given capsule in Java using different methods. Capsule volume formula The formula for capsule volume is as follows: Capsule volume = Cylindrical volume Volume Two hemisphere volume in, r: The radius of the hemisphere. h: The height of the cylinder (excluding the hemisphere). Example 1 enter Radius = 5 units Height = 10 units Output Volume = 1570.8 cubic units explain Calculate volume using formula: Volume = π × r2 × h (4

Spring Boot simplifies the creation of robust, scalable, and production-ready Java applications, revolutionizing Java development. Its "convention over configuration" approach, inherent to the Spring ecosystem, minimizes manual setup, allo
