不频繁的写入和频繁的读取

时间:2017-06-15 21:58:33

标签: java multithreading jedis

我有以下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);
    }

以下是主题 -

  • 1个写入线程,它将更新节点所在的状态 从群集中添加/删除 - 很少发生这种情况
  • 1个读取线程,它会经常读取调用getMaster()和 getPool()。

我想知道使用并发处理上述场景的最佳策略。我想避免在方法级别进行同步,因为读取非常频繁。

1 个答案:

答案 0 :(得分:1)

使用ReadWriteLock,通常表示ReentrantReadWriteLock

  

ReadWriteLock维护一对关联的锁,一个用于只读操作,另一个用于写入。只要没有写入器,读锁定可以由多个读取器线程同时保持。写锁是独占的。