Projects tagged ‘cache’, ‘client’, and ‘memcached’


Jump to tag:

Projects tagged ‘cache’, ‘client’, and ‘memcached’

Filtered by Project Tags cache client memcached

Refine results Project Tags java (4) memcache (1) killme2008 (1) xmemcached (1) server (1) optimize (1) nio (1) top (1) performance (1)

[4 total ]

0 Users

Ultra MemCached Java ClientWhy use Ultra MemCached clientLets face it, the reason you are using memcached is to make your application faster. Why would you use a client that wasn't built for speed? ... [More] Here is a list of performance items built into Ultra MemCached (some of which are yet to be done) Complete use of java.nio package for communication Non blocking IO so effective timeouts can be used Direct ByteBuffer pooling - used to read/write messages to channels Socket pooling Ability for custom Object encoders (TODO) Direct copy between String and ByteBuffer for packing messages Ability to pass "noreply" to storage requests (TODO) Asynchronous calling option (TODO) Operation object recycling Currently implemented calls (more coming):set get (single value) delete flush_all Ease of UseEvery client library should be flexible and easy to use. Ultra MemCached is no exception. Every operation call creates an object that you can set options on before running. Here are some examples: //simple set client.createSet("key", "My Value").run(); //set with no reply client.createSet("key", "My Value").setReply(false).run(); //set with custom value transcoder and timeout client.createSet("key", "My Value").setTimeout(500).setValueTranscoder(myEncoder).run();I think you get the idea. What about get operations: String value = (String)client.createGet("key").run().getValue(); [Less]
Created 5 months ago.

0 Users

当前最新版本为2.5.2。svn代码已经上传,有需要的同学可以直接下载使用maven来构建项目。 该项目是Memcache Java 客户端的实现 ... [More] 使用前先请下载帮助文档:在downloads中Memcached Client HandBook(特别注意对于第三方开源库版本依赖) 具体的代码,文档,测试内容都在Downloads 中可以获得 《MemCached Cache Java 客户端优化历程.doc》将描述详细的封装和优化过程 有任何问题可以联系wenchu.cenwc@alibaba-inc.com Memcache Client for Java Wrap and Optimize whalin memcache client. Optimize SocketIOPool Operation. add keyset function and cluster support and localcache + memcache support if you have any question,you can contact with me :). Email:wenchu.cenwc@alibaba-inc.com [Less]
Created about 1 year ago.

0 Users

This is a java implementation of a memcached server and client.
Created about 1 year ago.

0 Users

XMemcached is a high performance, easy to use multithreaded memcached client in java. It's nio based (using my open source nio framework :yanf4j), and was carefully tuned to get top performance. ... [More] Xmemcached main highlights: 1.Supports all memcached text based protocols and binary protocols(Binary protocol supports since version 1.2.0). 2.Supports distributed memcached with standard hash or consistent hash strategy 3.Supports for JMX to allow you to monitor and control the behavior of the XMemcachedClient.Change the optimizer's factor or add/remove memcached server dynamically 4.Supports weighted server. 5.Supports connection pool.You can create more connections to one memcached server with java nio.(since version 1.2.0) 6.Supports integrating to spring framework and hibernate-memcached. 7.High performance. 8.Supports kestrel(a MQ written in scala) Current stable version is 1.2.3 with yanf4j 1.1.1 Here is a performance comparison between java memcached client. http://xmemcached.googlecode.com/svn/trunk/benchmark/benchmark.html Xmemcached是基于java nio实现的高性能可扩展的memcached客户端。 实际上是基于我实现的一个nio框架 yanf4j的基础上实现的,当前推荐版本为1.2.3。 [Less]
Created 12 months ago.