A Clojure Memcached client (also: Couchbase, Kestrel). Built on top of SpyMemcached, supports ASCII and binary protocols, strives to be 100% feature complete.
I hit into problem on EC2: Spyglass client lost connection to ElasticCache and reconnection took too long and failed with exception - i did some google-fu and found this issue is now fixed in 2.12.0, according to this CouchBase codereview tool
My changes:
updated spymemcached from 2.11.4 -> 2.12.0
updated com.couchbase.client/java-client from 2.0.0 -> 2.2.4
updated org.clojure/core.cache from 0.6.2 -> 0.6.4
i'm using jvm8, so i updated javac also to 1.8;
upgraded Clojure version in the master profile;
updated warn-on-reflection setting in project.clj to work with newest Leiningen;
made little tweaks in the test, to make switching memcached server easier;
I'm going test my changes on my services to see did my updates fixed this re-connection issue, that means i'm not very big hurry to get next release out, but it would nice to get some feedback to my pull request if there's something to make it better;
Hi,
I hit into problem on EC2: Spyglass client lost connection to ElasticCache and reconnection took too long and failed with exception - i did some google-fu and found this issue is now fixed in 2.12.0, according to this CouchBase codereview tool
My changes:
spymemcached
from 2.11.4 -> 2.12.0com.couchbase.client/java-client
from 2.0.0 -> 2.2.4org.clojure/core.cache
from 0.6.2 -> 0.6.4master
profile;I'm going test my changes on my services to see did my updates fixed this re-connection issue, that means i'm not very big hurry to get next release out, but it would nice to get some feedback to my pull request if there's something to make it better;