Unistall Nortscale
how to unistall northscale memcahed or upgrade to membase?
I triead rpm -e nortscale no luck.
works fine I remove northscale directory... One more question I have setup 2 membase node as memcached my question is do I need to put 2 memcached ip server to php connection or I could used 1 ip?
You can use any IP address you choose.
Can you please elaborate how you are setup? What client are you using? Are you using server side moxi or client side moxi? I can tell you more about what goes on behind the scenes if you give me more information about your deployment.
Bhawana
You can use any IP address you choose.
Can you please elaborate how you are setup? What client are you using? Are you using server side moxi or client side moxi? I can tell you more about what goes on behind the scenes if you give me more information about your deployment.
Bhawana
Actually I don't setup any moxi on server side or client side, just normal script on php to connect to memcache on port 11211. I'm reading now the moxi and download moxi server rpm... there is no client moxi rpm available for download?
Is client side the client libraries?... is there any php sample scripts the read, insert, update, append data on client side?
There are several clients available. Here are some of the popular ones:
http://wiki.membase.org/display/membase/Client+Libraries
code snippet to set, get and delete data using php-pecl-memcache
<?php
$memcache = new Memcache;
$memcache->connect('localhost', 11211) or die ("Could not connect");
$version = $memcache->getVersion();
echo "Server's version: ".$version."<br/>\n";
$tmp_object = new stdClass;
$tmp_object->str_attr = 'test';
$tmp_object->int_attr = 123;
$memcache->set('key', $tmp_object, false, 10) or die ("Failed to save data at the server");
echo "Store data in the cache (data will expire in 10 seconds)<br/>\n";
$get_result = $memcache->get('key');
echo "Data from the cache:<br/>\n";
var_dump($get_result);
$memcache->delete('key');
?>
Hello, you can remove the northscale (membase) dir manually.
Let me know if that works or not.
Bhawana
Forum support is great for free but sometimes you need a guaranteed response time and dedicated resources for your questions or issues.
Consider purchasing enterprise-level support from Membase: http://www.membase.com/products-and-services/overview
Call or email "sales -at- membase -dot- com" today!