Package org.jredis.ri.alphazero.bench

Source Code of org.jredis.ri.alphazero.bench.JRedisClientJProfileSubject

/*
*   Copyright 2009 Joubin Houshyar
*
*   Licensed under the Apache License, Version 2.0 (the "License");
*   you may not use this file except in compliance with the License.
*   You may obtain a copy of the License at
*   
*   http://www.apache.org/licenses/LICENSE-2.0
*   
*   Unless required by applicable law or agreed to in writing, software
*   distributed under the License is distributed on an "AS IS" BASIS,
*   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*   See the License for the specific language governing permissions and
*   limitations under the License.
*/

package org.jredis.ri.alphazero.bench;

import org.jredis.JRedis;
import org.jredis.RedisException;
import org.jredis.bench.JRedisJProfileSubject;
import org.jredis.ri.alphazero.JRedisClient;

/**
* [TODO: document me!]
*
* @author  Joubin Houshyar (alphazero@sensesay.net)
* @version alpha.0, Apr 24, 2009
* @since   alpha.0
*
*/

public class JRedisClientJProfileSubject extends JRedisJProfileSubject{

  public static void main(String[] args) throws RedisException {
    JRedis jredis;
        jredis = new JRedisClient("localhost", 6379, "jredis", 0);
    new JRedisJProfileSubject (jredis).run();
  }
}
TOP

Related Classes of org.jredis.ri.alphazero.bench.JRedisClientJProfileSubject

TOP
Copyright © 2018 www.massapi.com. 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.