码迷,mamicode.com
首页 > 编程语言 > 详细

memcached java client

时间:2015-01-29 10:29:38      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:

public class TestMemcached  {  
   public static void main(String[] args) {
            // memcached should be running on port 11211 but NOT on 11212

      BasicConfigurator.configure();
      String[] servers = { "192.168.1.1:1624", "192.168.1.1:1625" };
      SockIOPool pool = SockIOPool.getInstance();
      pool.setServers( servers );
      pool.setFailover( true );
      pool.setInitConn( 10 ); 
      pool.setMinConn( 5 );
      pool.setMaxConn( 250 );
      pool.setMaintSleep( 30 );
      pool.setNagle( false );
      pool.setSocketTO( 3000 );
      pool.setAliveCheck( true );
      pool.initialize();

      MemcachedClient mcc = new MemcachedClient();

      // turn off most memcached client logging:
      com.meetup.memcached.Logger.getLogger( MemcachedClient.class.getName() ).setLevel( com.meetup.memcached.Logger.LEVEL_WARN );

      for ( int i = 0; i < 10; i++ ) {
         boolean success = mcc.set( "" + i, "Hello!" );
         String result = (String)mcc.get( "" + i );
         System.out.println( String.format( "set( %d ): %s", i, success ) );
         System.out.println( String.format( "get( %d ): %s", i, result ) );
      }

      System.out.println( "\n\t -- sleeping --\n" );
      try { Thread.sleep( 10000 ); } catch ( Exception ex ) { }

      for ( int i = 0; i < 10; i++ ) {
         boolean success = mcc.set( "" + i, "Hello!" );
         String result = (String)mcc.get( "" + i );
         System.out.println( String.format( "set( %d ): %s", i, success ) );
         System.out.println( String.format( "get( %d ): %s", i, result ) );
      }
   }
}

memcached java client

标签:

原文地址:http://blog.csdn.net/liuzhiquan_1025/article/details/43267067

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!