這個時候可以先撤銷安裝。通過CMD命令運行regedit。展開HKEY_LOCAL_MACHINE\Software\Microsoft\&;Windows\&;CurrentVersion分支,在窗口的右側區(qū)域找到名為“ProgramFilesDir”的鍵值,將其原鍵值“C:\Program Files”改為“X:\Program Files”,關閉注冊表。
服務端安裝完后,如果成功了,那么在瀏覽器中可以看到。如果沒有那么需要手動進行訪問http://localhost:8091/index.html。我是在本機安裝的所以可以用localhost,可以用IP或者hostname。
using Couchbase;
using Couchbase.Configuration;
using Enyim.Caching;
using Enyim.Caching.Configuration;
using Enyim.Caching.Memcached;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MemcachedTest
{
class Program
{
static void Main(string[] args)
{
//配置服務器
var mbcc = new CouchbaseClientConfiguration();
//設置各種超時時間
mbcc.SocketPool.ReceiveTimeout = new TimeSpan(0, 0, 2);
mbcc.SocketPool.ConnectionTimeout = new TimeSpan(0, 0, 4);
mbcc.SocketPool.DeadTimeout = new TimeSpan(0, 0, 10);
//使用默認的數(shù)據(jù)庫
mbcc.Urls.Add(new Uri("http://127.0.0.1:8091/pools/default"));
//建立一個Client,裝入Client的配置
var client = new CouchbaseClient(mbcc);
//添加一條數(shù)據(jù)
var item = client.Cas(StoreMode.Add, "Test", "Hello World!");
//獲取剛添加的數(shù)據(jù)
Console.WriteLine(client.Get("Test"));
Console.WriteLine("完成!");
Console.ReadLine();
}
}
}
//配置服務器
var mbcc = new CouchbaseClientConfiguration();
//設置各種超時時間
mbcc.SocketPool.ReceiveTimeout = new TimeSpan(0, 0, 2);
mbcc.SocketPool.ConnectionTimeout = new TimeSpan(0, 0, 4);
mbcc.SocketPool.DeadTimeout = new TimeSpan(0, 0, 10);
//使用默認的數(shù)據(jù)庫
mbcc.Urls.Add(new Uri("http://127.0.0.1:8091/pools/default"));
//建立一個Client,裝入Client的配置
var client = new CouchbaseClient(mbcc);
//添加一條數(shù)據(jù)
//var item = client.Cas(StoreMode.Add, "Test", "Hello World!");
//獲取剛添加的數(shù)據(jù)
Console.WriteLine(client.Get("Test"));
Console.WriteLine("完成!");
Console.ReadLine();