memcached java client 3.0.2详解

memcached-java-client-3.0.2详解

一:MemCachedClient的创建

创建该客户端对象的构造方法有以下几个:

1,


/**

* Creates a new instance of MemCachedClient.

*/

public MemCachedClient() {

this(null, true, false);

}

2,


/**

* Creates a new instance of MemCachedClient accepting a passed in pool

* name.

*

* @param poolName

*            name of SockIOPool

*/

public MemCachedClient(String poolName) {

this(poolName, true, false);

}

3,


/**

* Create memcached client.

*

* @param poolName

*            name of SockIOPool

* @param isTCP

*            use tcp protocol

* @param binaryProtocal

*            use binary protocol.

*/

public MemCachedClient(String poolName, boolean isTcp, boolean binaryProtocal) {

if (binaryProtocal)

client = new BinaryClient(poolName);

else

client = isTcp ? new AscIIClient(poolName) : new AscIIUDPClient(poolName);

}

我们常用的构造方法是1,2两种,从代码可知,我们真正创建的客户端对象大多是AscIIClient.

 

其客户端的继承关系如下:

而在每一个子类里面的构造方法中都会调用内部的void init()方法来初始化状态。

AscIIClient的init方法实现如下:


/**

* Initializes client object to defaults.

*

* This enables compression and sets compression threshhold to 15 KB.

*/

private void init() {

this.sanitizeKeys = true;  //key值是否被编码URLEncoder.encode

this.primitiveAsString = false;

this.compressEnable = false;

this.compressThreshold = COMPRESS_THRESH;

this.defaultEncoding = "UTF-8";

this.poolName = (this.poolName == null) ? "default" : this.poolName;

// get a pool instance to work with for the life of this instance

this.pool = SchoonerSockIOPool.getInstance(poolName);

}

AscIIUDPClient的init方法实现如下:


/**

* Initializes client object to defaults.

*

* This enables compression and sets compression threshhold to 15 KB.

*/

private void init() {

this.sanitizeKeys = true;

this.primitiveAsString = false;

this.compressEnable = true;

this.compressThreshold = COMPRESS_THRESH;

this.defaultEncoding = "UTF-8";

this.poolName = (this.poolName == null) ? "default" : this.poolName;

// get a pool instance to work with for the life of this instance

this.pool = SchoonerSockIOPool.getInstance(poolName);

}

BinaryClient的init方法实现如下:


/**

* Initializes client object to defaults.

*

* This enables compression and sets compression threshhold to 15 KB.

*/

private void init() {

this.poolName = (this.poolName == null) ? "default" : this.poolName;

// get a pool instance to work with for the life of this instance

this.pool = SchoonerSockIOPool.getInstance(poolName);

}

二:常用方法解析(以AscIIClient实现为例)

首先我们来认识一个方法,定义如下:


/**

* Stores data to cache.

*

* If data does not already exist for this key on the server, or if the key

* is being<br/>

* deleted, the specified value will not be stored.<br/>

* The server will automatically delete the value when the expiration time

* has been reached.<br/>

* <br/>

* If compression is enabled, and the data is longer than the compression

* threshold<br/>

* the data will be stored in compressed form.<br/>

* <br/>

* As of the current release, all objects stored will use java

* serialization.

*

* @param cmdname

*            action to take (set, add, replace, append,prepend, cas)

* @param key

*            key to store cache under

* @param value

*            object to cache

* @param expiry

*            expiration

* @param hashCode

*            if not null, then the int hashcode to use

* @return true/false indicating success

*/

private boolean set(String cmdname, String key, Object value, Date expiry, Integer hashCode, Long casUnique,  boolean asString)

该方法的作用就是向服务器端发送指令,从而实现各种功能,截取组装指令的代码段:

// construct the command

String cmd = new StringBuffer().append(cmdname).append(" ").append(key).append(" ").append(flags).append(" ").append(expiry.getTime() / 1000).append(" ").toString();

由此可见,要明白客户端这些方法在服务器段起到的效果,需要明白服务器段各个指令所达到的效果,这个后面介绍。

方法举例 


public boolean add(String key, Object value) {

return set("add", key, value, null, null, 0L, primitiveAsString);

}

该方法缓存的数据不过期


public boolean add(String key, Object value, Date expiry) {

return set("add", key, value, expiry, null, 0L, primitiveAsString);

}

该方法指定了数据缓存过期时间(过期时间到将会被自动删除)

其他方式类似,例如set, replace, append,prepend, cas

注意:key、value都不能为null.

时间: 2024-10-28 15:29:09

memcached java client 3.0.2详解的相关文章

Java网络编程和NIO详解5:Java 非阻塞 IO 和异步 IO

Java网络编程和NIO详解5:Java 非阻塞 IO 和异步 IO Java 非阻塞 IO 和异步 IO 转自https://www.javadoop.com/post/nio-and-aio 本系列文章首发于我的个人博客:https://h2pl.github.io/ 欢迎阅览我的CSDN专栏:Java网络编程和NIO https://blog.csdn.net/column/details/21963.html 部分代码会放在我的的Github:https://github.com/h2p

Java网络编程和NIO详解9:基于NIO的网络编程框架Netty

Java网络编程和NIO详解9:基于NIO的网络编程框架Netty 转自https://sylvanassun.github.io/2017/11/30/2017-11-30-netty_introduction/ netty是基于NIO实现的异步事件驱动的网络编程框架,学完NIO以后,应该看看netty的实现,netty框架涉及的内容特别多,这里只介绍netty的基本使用和实现原理,更多扩展的内容将在以后推出. 本系列文章首发于我的个人博客:https://h2pl.github.io/ 欢迎

Java网络编程和NIO详解2:JAVA NIO一步步构建IO多路复用的请求模型

Java网络编程与NIO详解2:JAVA NIO一步步构建IO多路复用的请求模型 知识点 nio 下 I/O 阻塞与非阻塞实现 SocketChannel 介绍 I/O 多路复用的原理 事件选择器与 SocketChannel 的关系 事件监听类型 字节缓冲 ByteBuffer 数据结构 场景 接着上一篇中的站点访问问题,如果我们需要并发访问10个不同的网站,我们该如何处理? 在上一篇中,我们使用了java.net.socket类来实现了这样的需求,以一线程处理一连接的方式,并配以线程池的控制

C# 网络编程之豆瓣OAuth2.0认证详解和遇到的各种问题及解决

        最近在帮人弄一个豆瓣API应用,在豆瓣的OAuth2.0认证过程中遇到了各种问题,同时自己需要一个个的尝试与解决,最终完成了豆瓣API的访问.作者这里就不再吐槽豆瓣的认证文档了,毕竟人家也不容易.但是作者发现关于豆瓣OAuth认证过程的文章非常之少,所以想详细写这样一篇文章方便后面要做同样东西的人阅读.希望文章对大家有所帮助,尤其是想做豆瓣API开发的初学者. (文章中蓝色字表示官方文档引用,红色字是可能遇到问题及注意,黑色字是作者叙述) 一.误区OAuth1.0认证过程    

Java中的main()方法详解

在Java中,main()方法是Java应用程序的入口方法,也就是说,程序在运行的时候,第一个执行的方法就是main()方法,这个方法和其他的方法有很大的不同,比如方法的名字必须是main,方法必须是public static void 类型的,方法必须接收一个字符串数组的参数等等. 在看Java中的main()方法之前,先看一个最简单的Java应用程序HelloWorld,我将通过这个例子说明Java类中main()方法的奥秘,程序的代码如下: 1 /** 2 * Java中的main()方法

Java下static关键字用法详解

Java下static关键字用法详解 本文章介绍了java下static关键字的用法,大部分内容摘自原作者,在此学习并分享给大家. Static关键字可以修饰什么? 从以下测试可以看出, static 可以修饰: 1. 语句块 2. 成员变量(但是不能修饰局部变量) 3. 方法 4. 接口(内部接口) 5. 类(只能修饰在类中的类, 即静态内部类) 6. jdk 1.5 中新增的静态导入 那么static 修饰的表示什么呢? 当创建一个类时,就是在创建一个新类型,描述这个类的对象的外观和行为,除

java中的io系统详解

java中的io系统详解 分类: JAVA开发应用 笔记(读书.心得)2009-03-04 11:26 46118人阅读 评论(37) 收藏 举报 javaiostreamconstructorstringbyte 相关读书笔记.心得文章列表 Java 流在处理上分为字符流和字节流.字符流处理的单元为 2 个字节的 Unicode 字符,分别操作字符.字符数组或字符串,而字节流处理单元为 1 个字节,操作字节和字节数组. Java 内用 Unicode 编码存储字符,字符流处理类负责将外部的其他

Spring3.0 AOP 详解

一.什么是 AOP. AOP(Aspect Orient Programming),也就是面向切面编程.可以这样理解,面向对象编程(OOP)是从静态角度考虑程序结构,面向切面编程(AOP)是从动态角度考虑程序运行过程. 二.AOP 的作用. 常常通过 AOP 来处理一些具有横切性质的系统性服务,如事物管理.安全检查.缓存.对象池管理等,AOP 已经成为一种非常常用的解决方案. 三.AOP 的实现原理. 如图:AOP 实际上是由目标类的代理类实现的.AOP 代理其实是由 AOP 框架动态生成的一个

java虚拟机启动参数分类详解

官方文档见: http://docs.sun.com/source/819-0084/pt_tuningjava.html java启动参数共分为三类:其一是标准参数(-),所有的JVM实现都必须实现这些参数的功能,而且向后兼容:其二是非标准参数(-X),默认jvm实现这些参数的功能,但是并不保证所有jvm实现都满足,且不保证向后兼容:其三是非Stable参数(-XX),此类参数各个jvm实现会有所不同,将来可能会随时取消,需要慎重使用: 一.标准参数中比较有用的: verbose -verbo