zoukankan      html  css  js  c++  java
  • 高并发下减少锁竞争

    1.减少锁的持有时间,将不需要锁的操作从同步代码块的移除。

    1. //可以优化的代码  
    2. class AttributeStore{  
    3.     private final Map<String,String> attributes=new HashMap<String,String>();  
    4.     public synchronized boolean userLocationMatches(String username,String regex){  
    5.         String key="user."+username;  
    6.         String location=attributes.get(key);  
    7.         if(location==null)  
    8.             return false;  
    9.         else  
    10.             return Pattern.matches(regex,location);  
    11.     }  
    12. }  
    1. //优化之后的代码  
    2. class AttributeStore{  
    3.     private final Map<String,String> attributes=new HashMap<String,String>();  
    4.     public boolean userLocationMatches(String username,String regex){  
    5.         String key="user."+username;  
    6.         String location;  
    7.         synchronized (this) {  
    8.             location=attributes.get(key);             
    9.         }  
    10.         if(location==null)  
    11.             return false;  
    12.         else  
    13.             return Pattern.matches(regex,location);  
    14.     }  
    15. }  

    2.降低锁的粒度

    1. //可以锁分解的代码  
    2. class ServerStatus{  
    3.     private  Set<String> users;  
    4.     private  Set<String> queries;  
    5.     public synchronized void addUser(String user){  
    6.         users.add(user);  
    7.     }  
    8.     public synchronized void removeUser(String user){  
    9.         users.remove(user);  
    10.     }  
    11.       
    12.     public synchronized void addQuery(String query){  
    13.         queries.add(query);  
    14.     }  
    15.     public synchronized void removeQuery(String query){  
    16.         queries.remove(query);  
    17.     }     
    18. }  
    1. //优化后的代码  
    2. class ServerStatus{  
    3.     private  Set<String> users;  
    4.     private  Set<String> queries;  
    5.     public  void addUser(String user){  
    6.         synchronized (users) {  
    7.             users.add(user);  
    8.         }  
    9.     }  
    10.     public  void removeUser(String user){  
    11.         synchronized (users) {  
    12.             users.remove(user);  
    13.         }  
    14.     }  
    15.       
    16.     public  void addQuery(String query){  
    17.         synchronized (queries) {  
    18.             queries.add(query);  
    19.         }  
    20.     }  
    21.     public  void removeQuery(String query){  
    22.         synchronized (queries) {  
    23.             queries.remove(query);  
    24.         }  
    25.     }     
    26. }  
  • 相关阅读:
    eclipse --- 新建JSP页面默认模版设置
    (转)Spring文件上传,包括一次选中多个文件
    python 一篇搞定所有的异常处理
    python 常用算法学习(2)
    python 面向对象之继承与派生
    python 面向对象的程序设计
    python 闯关之路二(模块的应用)
    python 一篇就能理解函数基础
    python 装饰器 一篇就能讲清楚
    python 练完这些,你的函数编程就ok了
  • 原文地址:https://www.cnblogs.com/minshia/p/7045045.html
Copyright © 2011-2022 走看看