欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java并发编程总结——慎用CAS详解

程序员文章站 2024-03-12 10:56:08
一、cas和synchronized适用场景 1、对于资源竞争较少的情况,使用synchronized同步锁进行线程阻塞和唤醒切换以及用户态内核态间的切换操作额外浪费消耗...

一、cas和synchronized适用场景

1、对于资源竞争较少的情况,使用synchronized同步锁进行线程阻塞和唤醒切换以及用户态内核态间的切换操作额外浪费消耗cpu资源;而cas基于硬件实现,不需要进入内核,不需要切换线程,操作自旋几率较少,因此可以获得更高的性能。

2、对于资源竞争严重的情况,cas自旋的概率会比较大,从而浪费更多的cpu资源,效率低于synchronized。以java.util.concurrent.atomic包中atomicinteger类为例,其getandincrement()方法实现如下:

public final int getandincrement() {
    for (;;) {
      int current = get();
      int next = current + 1;
      if (compareandset(current, next))
        return current;
    }
}

如果compareandset(current, next)方法成功执行,则直接返回;如果线程竞争激烈,导致compareandset(current, next)方法一直不能成功执行,则会一直循环等待,直到耗尽cpu分配给该线程的时间片,从而大幅降低效率。

二、cas错误的使用场景

public class casdemo {
  private final int thread_num = 1000;
  private final int max_value = 20000000;
  private atomicinteger casi = new atomicinteger(0);
  private int synci = 0;
  private string path = "/users/pingping/datacenter/books/linux/linux常用命令详解.txt";

  public void casadd() throws interruptedexception {
    long begin = system.currenttimemillis();
    thread[] threads = new thread[thread_num];
    for (int i = 0; i < thread_num; i++) {
      threads[i] = new thread(new runnable() {
        public void run() {
          while (casi.get() < max_value) {
            casi.getandincrement();
          }
        }
      });
      threads[i].start();
    }
    for (int j = 0; j < thread_num; j++) {
      threads[j].join();
    }
    system.out.println("cas costs time: " + (system.currenttimemillis() - begin));
  }

  public void syncadd() throws interruptedexception {
    long begin = system.currenttimemillis();
    thread[] threads = new thread[thread_num];
    for (int i = 0; i < thread_num; i++) {
      threads[i] = new thread(new runnable() {
        public void run() {
          while (synci < max_value) {
            synchronized ("synci") {
              ++synci;
            }
          }
        }
      });
      threads[i].start();
    }
    for (int j = 0; j < thread_num; j++)
      threads[j].join();
    system.out.println("sync costs time: " + (system.currenttimemillis() - begin));
  }
}

在我的双核cpu上运行,结果如下:

Java并发编程总结——慎用CAS详解

可见在不同的线程下,采用cas计算消耗的时间远多于使用synchronized方式。原因在于第15行

14           while (casi.get() < max_value) {
15             casi.getandincrement();
16           }

的操作是一个耗时非常少的操作,15行执行完之后会立刻进入循环,继续执行,从而导致线程冲突严重。

三、改进的cas使用场景

为了解决上述问题,只需要让每一次循环执行的时间变长,即可以大幅减少线程冲突。修改代码如下:

 

public class casdemo {
  private final int thread_num = 1000;
  private final int max_value = 1000;
  private atomicinteger casi = new atomicinteger(0);
  private int synci = 0;
  private string path = "/users/pingping/datacenter/books/linux/linux常用命令详解.txt";

  public void casadd2() throws interruptedexception {
    long begin = system.currenttimemillis();
    thread[] threads = new thread[thread_num];
    for (int i = 0; i < thread_num; i++) {
      threads[i] = new thread(new runnable() {
        public void run() {
          while (casi.get() < max_value) {
            casi.getandincrement();
            try (inputstream in = new fileinputstream(new file(path))) {
                while (in.read() != -1);
            } catch (ioexception e) {
              e.printstacktrace();
            }
          }
        }
      });
      threads[i].start();
    }
    for (int j = 0; j < thread_num; j++)
      threads[j].join();
    system.out.println("cas random costs time: " + (system.currenttimemillis() - begin));
  }

  public void syncadd2() throws interruptedexception {
    long begin = system.currenttimemillis();
    thread[] threads = new thread[thread_num];
    for (int i = 0; i < thread_num; i++) {
      threads[i] = new thread(new runnable() {
        public void run() {
          while (synci < max_value) {
            synchronized ("synci") {
              ++synci;
            }
            try (inputstream in = new fileinputstream(new file(path))) {
              while (in.read() != -1);
            } catch (ioexception e) {
              e.printstacktrace();
            }
          }
        }
      });
      threads[i].start();
    }
    for (int j = 0; j < thread_num; j++)
      threads[j].join();
    system.out.println("sync costs time: " + (system.currenttimemillis() - begin));
  }
}

 

在while循环中,增加了一个读取文件内容的操作,该操作大概需要耗时40ms,从而可以减少线程冲突。测试结果如下:

Java并发编程总结——慎用CAS详解

可见在资源冲突比较小的情况下,采用cas方式和synchronized同步效率差不多。为什么cas相比synchronized没有获得更高的性能呢?

测试使用的jdk为1.7,而从jdk1.6开始,对锁的实现引入了大量的优化,如锁粗化(lock coarsening)、锁消除(lock elimination)、轻量级锁(lightweight locking)、偏向锁(biased locking)、适应性自旋(adaptive spinning)等技术来减少锁操作的开销。而其中自旋锁的原理,类似于cas自旋,甚至比cas自旋更为优化。具体内容请参考 深入jvm锁机制1-synchronized。

四、总结

1、使用cas在线程冲突严重时,会大幅降低程序性能;cas只适合于线程冲突较少的情况使用。

2、synchronized在jdk1.6之后,已经改进优化。synchronized的底层实现主要依靠lock-free的队列,基本思路是自旋后阻塞,竞争切换后继续竞争锁,稍微牺牲了公平性,但获得了高吞吐量。在线程冲突较少的情况下,可以获得和cas类似的性能;而线程冲突严重的情况下,性能远高于cas。

以上这篇java并发编程总结——慎用cas详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。