baiheqiang / memcached-session-manager

Automatically exported from code.google.com/p/memcached-session-manager
0 stars 0 forks source link

support for couchbaseclient 1.0/spymemcached 2.8 #149

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Membase/couchbase-specific constructors have been moved from MemcachedClient to 
CouchbaseClient, so it's not possible to just replace spymemcached 2.7 with 2.8 
for membase specific configuration, since this call will fail ( in 
MemcachedSessionService.createMemcachedClient():
return new MemcachedClient(memcachedNodesManager.getMembaseBucketURIs(), 
_username, _password);

It should be replaced with:
return new CouchbaseClient(memcachedNodesManager.getMembaseBucketURIs(), 
_username, _password);

Original issue reported on code.google.com by lkoc...@gmail.com on 26 Jul 2012 at 3:40

GoogleCodeExporter commented 8 years ago
Related to issue #126 (maybe duplicate)

Original comment by martin.grotzke on 27 Jul 2012 at 8:52

GoogleCodeExporter commented 8 years ago
see my pull request for the switch to the new API: 
https://github.com/magro/memcached-session-manager/pull/23

Original comment by hajo.kli...@gmail.com on 16 Mar 2013 at 8:46

GoogleCodeExporter commented 8 years ago

Original comment by martin.grotzke on 28 Mar 2013 at 9:13