Re: Issue 202 in memcached: TOP_KEYS feature fixes

2011-06-06 Thread dormando
> I just noticed that I didn't answer this question from Dormando: "Is > the only reason to keep it exactly the way it is because it's already > done and you have customers who rely on it?" I was actually asking the couchbase folks why they were so insistent on pushing the feature the way it was

Re: Issue 202 in memcached: TOP_KEYS feature fixes

2011-06-06 Thread neilmckee
I just noticed that I didn't answer this question from Dormando: "Is the only reason to keep it exactly the way it is because it's already done and you have customers who rely on it?" I should clarify: In sFlow, only the architectural framework is fixed. The actual fields that are sent can alwa

Re: Membase bucket creation.

2011-06-06 Thread Matt Ingenthron
Hi Aditya, You should take this to memb...@googlegroups.com or the membase forums. This list is about memcached. Regards, Matt On 6/5/11 7:32 PM, Aditya Kumar wrote: > > How to use membase backets? > I have 4 tables that need to be created.so 4 vbackets. > > Initially I have the default bucke

Re: reading data from php client

2011-06-06 Thread Geoffrey Hoffman
It's unclear from your code sample how you are instantiating the memcache class instance. Meaning, $memcache isn't set? Try this: $memcache = new Memcache; $memcache->connect('127.0.0.1', 11212); $memcache->set('sample3',2); $foo = $memcache->get('sample3'); print_r( $foo ); On Sun, Jun 5, 201