当前位置: 首页>>代码示例>>Java>>正文


Java Jedis.disconnect方法代码示例

本文整理汇总了Java中redis.clients.jedis.Jedis.disconnect方法的典型用法代码示例。如果您正苦于以下问题:Java Jedis.disconnect方法的具体用法?Java Jedis.disconnect怎么用?Java Jedis.disconnect使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在redis.clients.jedis.Jedis的用法示例。


在下文中一共展示了Jedis.disconnect方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: main

import redis.clients.jedis.Jedis; //导入方法依赖的package包/类
public static void main(String[] args) throws UnknownHostException, IOException {
  Jedis jedis = new Jedis(hnp.getHost(), hnp.getPort());
  jedis.connect();
  jedis.auth("foobared");
  jedis.flushAll();

  long begin = Calendar.getInstance().getTimeInMillis();

  Pipeline p = jedis.pipelined();
  for (int n = 0; n <= TOTAL_OPERATIONS; n++) {
    String key = "foo" + n;
    p.set(key, "bar" + n);
    p.get(key);
  }
  p.sync();

  long elapsed = Calendar.getInstance().getTimeInMillis() - begin;

  jedis.disconnect();

  System.out.println(((1000 * 2 * TOTAL_OPERATIONS) / elapsed) + " ops");
}
 
开发者ID:qq1588518,项目名称:JRediClients,代码行数:23,代码来源:PipelinedGetSetBenchmark.java

示例2: main

import redis.clients.jedis.Jedis; //导入方法依赖的package包/类
public static void main(String[] args) throws UnknownHostException, IOException {
  Jedis jedis = new Jedis(hnp.getHost(), hnp.getPort());
  jedis.connect();
  jedis.auth("foobared");
  jedis.flushAll();

  long begin = Calendar.getInstance().getTimeInMillis();

  for (int n = 0; n <= TOTAL_OPERATIONS; n++) {
    String key = "foo" + n;
    jedis.set(key, "bar" + n);
    jedis.get(key);
  }

  long elapsed = Calendar.getInstance().getTimeInMillis() - begin;

  jedis.disconnect();

  System.out.println(((1000 * 2 * TOTAL_OPERATIONS) / elapsed) + " ops");
}
 
开发者ID:qq1588518,项目名称:JRediClients,代码行数:21,代码来源:GetSetBenchmark.java

示例3: connectWithShardInfoAndCustomHostnameVerifier

import redis.clients.jedis.Jedis; //导入方法依赖的package包/类
/**
 * Tests opening an SSL/TLS connection to redis with a custom hostname
 * verifier.
 */
@Test
public void connectWithShardInfoAndCustomHostnameVerifier() {
  final URI uri = URI.create("rediss://localhost:6390");
  final SSLSocketFactory sslSocketFactory = (SSLSocketFactory) SSLSocketFactory.getDefault();
  final SSLParameters sslParameters = new SSLParameters();

  HostnameVerifier hostnameVerifier = new BasicHostnameVerifier();
  JedisShardInfo shardInfo = new JedisShardInfo(uri, sslSocketFactory, sslParameters, hostnameVerifier);
  shardInfo.setPassword("foobared");

  Jedis jedis = new Jedis(shardInfo);
  jedis.get("foo");
  jedis.disconnect();
  jedis.close();
}
 
开发者ID:qq1588518,项目名称:JRediClients,代码行数:20,代码来源:SSLJedisTest.java

示例4: connectWithShardInfoAndCustomSocketFactory

import redis.clients.jedis.Jedis; //导入方法依赖的package包/类
/**
 * Tests opening an SSL/TLS connection to redis with a custom socket factory.
 */
@Test
public void connectWithShardInfoAndCustomSocketFactory() throws Exception {
  final URI uri = URI.create("rediss://localhost:6390");
  final SSLSocketFactory sslSocketFactory = createTrustStoreSslSocketFactory();
  final SSLParameters sslParameters = new SSLParameters();

  HostnameVerifier hostnameVerifier = new BasicHostnameVerifier();
  JedisShardInfo shardInfo = new JedisShardInfo(uri, sslSocketFactory, sslParameters, hostnameVerifier);
  shardInfo.setPassword("foobared");

  Jedis jedis = new Jedis(shardInfo);
  jedis.get("foo");
  jedis.disconnect();
  jedis.close();
}
 
开发者ID:qq1588518,项目名称:JRediClients,代码行数:19,代码来源:SSLJedisTest.java

示例5: publishOne

import redis.clients.jedis.Jedis; //导入方法依赖的package包/类
private void publishOne(final String channel, final String message) {
  Thread t = new Thread(new Runnable() {
    public void run() {
      try {
        Jedis j = createJedis();
        j.publish(channel, message);
        j.disconnect();
      } catch (Exception ex) {
      }
    }
  });
  t.start();
}
 
开发者ID:qq1588518,项目名称:JRediClients,代码行数:14,代码来源:PublishSubscribeCommandsTest.java

示例6: main

import redis.clients.jedis.Jedis; //导入方法依赖的package包/类
public static void main(String[] args) throws Exception {
  Jedis j = new Jedis(hnp.getHost(), hnp.getPort());
  j.connect();
  j.auth("foobared");
  j.flushAll();
  j.quit();
  j.disconnect();
  long t = System.currentTimeMillis();
  // withoutPool();
  withPool();
  long elapsed = System.currentTimeMillis() - t;
  System.out.println(((1000 * 2 * TOTAL_OPERATIONS) / elapsed) + " ops");
}
 
开发者ID:qq1588518,项目名称:JRediClients,代码行数:14,代码来源:PoolBenchmark.java

示例7: main

import redis.clients.jedis.Jedis; //导入方法依赖的package包/类
public static void main(String[] args) throws Exception {
    Jedis j = new Jedis("127.0.0.1", 6379);
    j.connect();
    j.auth("weimob123");
    j.flushAll();
    j.quit();
    j.disconnect();
    long t = System.currentTimeMillis();
    // withoutPool();
    withPool();
    long elapsed = System.currentTimeMillis() - t;
    System.out.println(((1000 * TOTAL_OPERATIONS) / elapsed) + " ops");
}
 
开发者ID:TwoDragonLake,项目名称:tdl-seckill,代码行数:14,代码来源:PoolTest.java

示例8: handleClientOutputBufferLimitForSubscribeTooSlow

import redis.clients.jedis.Jedis; //导入方法依赖的package包/类
@Test(expected = JedisConnectionException.class)
public void handleClientOutputBufferLimitForSubscribeTooSlow() throws InterruptedException {
  final Jedis j = createJedis();
  final AtomicBoolean exit = new AtomicBoolean(false);

  final Thread t = new Thread(new Runnable() {
    public void run() {
      try {

        // we already set jedis1 config to
        // client-output-buffer-limit pubsub 256k 128k 5
        // it means if subscriber delayed to receive over 256k or
        // 128k continuously 5 sec,
        // redis disconnects subscriber

        // we publish over 100M data for making situation for exceed
        // client-output-buffer-limit
        String veryLargeString = makeLargeString(10485760);

        // 10M * 10 = 100M
        for (int i = 0; i < 10 && !exit.get(); i++) {
          j.publish("foo", veryLargeString);
        }

        j.disconnect();
      } catch (Exception ex) {
      }
    }
  });
  t.start();
  try {
    jedis.subscribe(new JedisPubSub() {
      public void onMessage(String channel, String message) {
        try {
          // wait 0.5 secs to slow down subscribe and
          // client-output-buffer exceed
          // System.out.println("channel - " + channel +
          // " / message - " + message);
          Thread.sleep(100);
        } catch (Exception e) {
          try {
            t.join();
          } catch (InterruptedException e1) {
          }

          fail(e.getMessage());
        }
      }
    }, "foo");
  } finally {
    // exit the publisher thread. if exception is thrown, thread might
    // still keep publishing things.
    exit.set(true);
    if (t.isAlive()) {
      t.join();
    }
  }
}
 
开发者ID:qq1588518,项目名称:JRediClients,代码行数:59,代码来源:PublishSubscribeCommandsTest.java


注:本文中的redis.clients.jedis.Jedis.disconnect方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。