标签: redis怎么进行发布订阅

  • redis怎么进行发布订阅_读书小站

    本文收集自网络,侵删!

    redis怎么进行发布订阅

    Redis进行发布订阅的方法:

    代码:

    public void publish(String topic ,String messge){

    Jedis jedis = null;

    if (StringUtils.isBlank(topic)){

    topic=TOPIC;

    }

    try {

    jedis = jedisPool.getResource();

    jedis.publish(topic,messge);

    }

    finally {

    if (null != jedis) {

    jedis.close();

    }

    }

    }