Jedisがアリ雲redisを訪問

2747 ワード

アリクラウドredisは現在、パブリックネットワークへの直接アクセスをサポートしていません.ローカルでアリクラウドredisを調整する必要がある場合は.ecs上で転送を確立する必要があります.パブリックネットワークアクセスのアリクラウドについては、この記事を参照してください:アリクラウドredis rinetd構成.次にjedisがredisにアクセスする例を示します.
public class RedisAliyun {
    public static Logger log = LoggerFactory.getLogger(RedisUtil.class);
    //Redis   IP
    private static String ADDR = "10.26.201.247";
    //   redis      ID:  
    private static String passwd = "r-XXXXXXX:1qaz2wsx";

    //Redis    
    private static int PORT = 6379;

    //           ,    8;
    //     -1,      ;  pool     maxActive jedis  ,   pool    exhausted(  )。
    private static int MAX_ACTIVE = 1024;

    //    pool         idle(   ) jedis  ,     8。
    private static int MAX_IDLE = 200;

    //           ,    ,    -1,      。        ,     JedisConnectionException;
    private static int MAX_WAIT = 10000;

    private static int TIMEOUT = 10000;

    // borrow  jedis   ,      validate  ;   true,    jedis       ;
    private static boolean TEST_ON_BORROW = true;

    private static JedisPool jedisPool = null;

    /**
     *    Redis   
     */
    static {
        try {
            JedisPoolConfig config = new JedisPoolConfig();
            config.setMaxTotal(MAX_ACTIVE);
            config.setMaxIdle(MAX_IDLE);
            config.setMaxWaitMillis(MAX_WAIT);
            config.setTestOnBorrow(TEST_ON_BORROW);
            jedisPool = new JedisPool(config, ADDR, PORT, TIMEOUT,passwd);
        } catch (Exception e) {
            //e.printStackTrace();
            log.error("error: " + e.toString());
        }
    }

    /**
     *   Jedis  
     * @return
     */
    public synchronized static Jedis getJedis() {
        try {
            if (jedisPool != null) {
                Jedis resource = jedisPool.getResource();
                return resource;
            } else {
                return null;
            }
        } catch (Exception e) {
            //e.printStackTrace();
            log.error("error: " + e.toString());
            return null;
        }
    }

    /**
     *   jedis  
     * @param jedis
     */
    public static void releaseResource(final Jedis jedis) {
        if (jedis != null) {
            jedis.close();
        }
    }
    
    public static void main(String[] args) {
        Jedis client = RedisAliyun.getJedis();
        if(client == null){
            System.out.println("error to connect a redis");
            return;
        }
        for(int i=0; i<100; i++){
            String key = String.format("test-%d", i);
            client.append(key, key+"key");
        }
        String result = client.get("test-1");
        System.out.println(result);
    }
}