Package org.springframework.data.keyvalue.redis.connection.rjc

Source Code of org.springframework.data.keyvalue.redis.connection.rjc.RjcConnectionIntegrationTests

/*
* Copyright 2011 the original author or authors.
*
* 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.springframework.data.keyvalue.redis.connection.rjc;

import org.idevlab.rjc.Session;
import org.junit.Test;
import org.springframework.data.keyvalue.redis.SettingsUtils;
import org.springframework.data.keyvalue.redis.connection.AbstractConnectionIntegrationTests;
import org.springframework.data.keyvalue.redis.connection.RedisConnectionFactory;

/**
* @author Costin Leau
*/
public class RjcConnectionIntegrationTests extends AbstractConnectionIntegrationTests {

  RjcConnectionFactory factory;

  public RjcConnectionIntegrationTests() {
    factory = new RjcConnectionFactory();
    factory.setPort(SettingsUtils.getPort());
    factory.setHostName(SettingsUtils.getHost());

    factory.setUsePool(false);
    factory.afterPropertiesSet();
  }

  @Override
  protected RedisConnectionFactory getConnectionFactory() {
    return factory;
  }

  @Test
  public void testRaw() throws Exception {
    Session jr = (Session) factory.getConnection().getNativeConnection();

    System.out.println(jr.dbSize());
    System.out.println(jr.exists("foobar"));
    jr.set("foobar", "barfoo");
    System.out.println(jr.get("foobar"));
  }
}
TOP

Related Classes of org.springframework.data.keyvalue.redis.connection.rjc.RjcConnectionIntegrationTests

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.