- 授权协议: 未知
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: http://code.google.com/p/spymemcached/
软件介绍
Spymemcached是一个采用Java开发的异步、单线程的Memcached客户端。
最简单的例子:
MemcachedClient c=new MemcachedClient(
new InetSocketAddress("hostname", portNum));
// Store a value (async) for one hour
c.set("someKey", 3600, someObject);
// Retrieve a value (synchronously).
Object myObject=c.get("someKey");
Elements of Programming
Alexander A. Stepanov、Paul McJones / Addison-Wesley Professional / 2009-6-19 / USD 39.99
Elements of Programming provides a different understanding of programming than is presented elsewhere. Its major premise is that practical programming, like other areas of science and engineering, mus......一起来看看 《Elements of Programming》 这本书的介绍吧!