Couchbase
  • Why NoSQL?
  • Couchbase Server
  • Download
  • Resources
  • Careers
Home | Forums | Membase | Memcached Server 1.0.3

Unistall Nortscale

6 replies [Last post]
  • Login or register to post comments
Wed, 12/15/2010 - 00:41
t0kneneng
Offline
Joined: 11/29/2010
Groups: None

how to unistall northscale memcahed or upgrade to membase?

 

I triead rpm -e nortscale no luck.

Top
Wed, 12/15/2010 - 17:31
bhawana@membase
Offline
Joined: 10/29/2010
Groups: None

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!

Top
Thu, 12/16/2010 - 06:16
t0kneneng
Offline
Joined: 11/29/2010
Groups: None

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?

Top
Thu, 12/16/2010 - 17:51
bhawana@membase
Offline
Joined: 10/29/2010
Groups: None

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

__________________

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!

Top
Thu, 12/16/2010 - 19:06
t0kneneng
Offline
Joined: 11/29/2010
Groups: None

bhawana@membase wrote:

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?

Top
Thu, 12/16/2010 - 23:11
t0kneneng
Offline
Joined: 11/29/2010
Groups: None

Is client side the client libraries?... is there any php sample scripts the read, insert, update, append data on client side?

Top
Fri, 12/17/2010 - 15:13
bhawana@membase
Offline
Joined: 10/29/2010
Groups: None

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');

?>

__________________

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!

Top
  • Login or register to post comments
  • Login
  • Register

Company

  • About Us
  • Leadership
  • Customers
  • Partners
  • Contact Us

Product

  • Couchbase Server
  • Couchbase SDKs
  • Use Cases
  • Documentation
  • Forums

Open Source

  • Couchbase Project
  • Couchbase vs. CouchDB

Commercial

  • Subscriptions & Support
  • Training & Services

News

  • Blog
  • Newsletter
  • Press Releases
  • Buzz

Follow Us

    
  • Customer Login
  • Terms of Service
  • Privacy Policy
  • Trademark Policy
  • Site Map

© 2013 COUCHBASE All rights reserved.

Sign in to Couchbase Community

close
  • Create new account
  • Request new password
You are logging into the Forums, Wiki and Issue Tracker