我有以下JedisCluster impl,我想让线程安全 -
public class Cluster {
private List<String> hostPorts;
private Map<String, JedisPool> hostPool =
new ConcurrentHashMap<String, JedisPool>();
public add(String node) {
hostPorts.add(node);
hostPool.add(node, create_pool);
}
public remove(String node) {
hostPorts.remove(node);
JedisPool pool = hostPool.remove(node)
pool.destroy();
}
public String getMaster(String key) {
return hostPorts.get(some_hash() % hostPool.size());
}
public JedisPool getPool(String node) {
return redisHostPool.get(node);
}
以下是主题 -
我想知道使用并发处理上述场景的最佳策略。我想避免在方法级别进行同步,因为读取非常频繁。
答案 0 :(得分:1)
使用ReadWriteLock
,通常表示ReentrantReadWriteLock
:
ReadWriteLock
维护一对关联的锁,一个用于只读操作,另一个用于写入。只要没有写入器,读锁定可以由多个读取器线程同时保持。写锁是独占的。