Package com.baidu.disconf.ub.common.redis

Examples of com.baidu.disconf.ub.common.redis.RedisClient


     * @param authKey
     * @param timeOut
     */
    public ContextMgr(String redisServer, int port, String authKey, int timeOut) {

        client = new RedisClient();
        client.setRedisServerHost(redisServer);
        client.setRedisServerPort(port);
        client.setRedisAuthKey(authKey);
        client.setTimeout(timeOut);

View Full Code Here


     * @param authKey
     * @param timeOut
     */
    public ContextMgr(String redisServer, int port, String authKey, int timeOut) {

        client = new RedisClient();
        client.setRedisServerHost(redisServer);
        client.setRedisServerPort(port);
        client.setRedisAuthKey(authKey);
        client.setTimeout(timeOut);

View Full Code Here

TOP

Related Classes of com.baidu.disconf.ub.common.redis.RedisClient

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.