Questions tagged [xmemcached]

XMemcached is a high performance, easy to use multithreaded memcached client in java.

XMemcached is a high performance, easy to use multithreaded memcached client in java.

It's nio based and was carefully turned to get top performance.

For more information please visit https://code.google.com/p/xmemcached/

20 questions
0
votes
1 answer

How to make xmemcached faster

I have a project wherein we are trying to shift major portion of a php code in a java service. One of the critical portion is memcached transactions. I started off with xmemcached. I am using binary protocol and connection pool of 5 for my test. I…
Shades88
  • 7,934
  • 22
  • 88
  • 130
0
votes
1 answer

how to make persistent connections to memcached server using xmemcached or spymemcached

How can we use persistent connections to memcached servers using xmemcached or spymemcached? I am presently using xmemcached. MemcachedClientBuilder builder = new XMemcachedClientBuilder( AddrUtil.getAddresses( "127.0.0.1:11211…
Shades88
  • 7,934
  • 22
  • 88
  • 130
0
votes
0 answers

Couchbase + xmemcached

I am using couchbase and xmemcached client in multithreaded java SE application. I am constantly observing that couchbase is unable to save last few keys whereas traditional memcached is setting all keys excellently. I am using exaclty same…
Talal
  • 78
  • 6
0
votes
1 answer

What are these Xmemcached error messages?

I'm new to Java environments (I'm a JS dev that's never had to use a large environment until now) and I got my app running on a Tomcat instance, but I'm curious as to what these messages mean. I mean, the app is functioning just fine on localhost…
Tom Maxwell
  • 9,273
  • 17
  • 55
  • 68
0
votes
1 answer

Asynchronous set in XMemcached

I have to fill a Memcached server with a lot of entries using XMemcached. As Memcached (and XMemcached) doesn't support multi-set, is there a way to "set" a value without waiting for the request to complete? Maybe that is the case natively with…
Matthieu Napoli
  • 48,448
  • 45
  • 173
  • 261
1
2