CouchBase快速配置
Posted 奎宇工作室
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CouchBase快速配置相关的知识,希望对你有一定的参考价值。
Common.Logging.dll
Common.Logging.Core.dll
CouchbaseNetClient.dll
log4net.dll
Newtonsoft.Json.dll
1 public static class CouchBaseHelper 2 { 3 static CouchBaseHelper() 4 { 5 ClusterHelper.Initialize("couchbaseClients/couchbase"); 6 } 7 8 /// <summary> 9 /// Documents the exist. 10 /// </summary> 11 /// <param name="key">The key.</param> 12 /// <param name="bucketName">Name of the bucket.</param> 13 /// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns> 14 public static bool DocumentExist(string key, string bucketName = "xftbmb") 15 { 16 var bucket = ClusterHelper.GetBucket(bucketName); 17 18 return bucket.Exists(key); 19 20 21 } 22 23 24 /// <summary> 25 /// 在Bucket中获取一个文档 26 /// </summary> 27 /// <typeparam name="T">动态数据类型</typeparam> 28 /// <param name="key">文档唯一标识</param> 29 /// <param name="bucketName">指定Bucket名称</param> 30 /// <returns></returns> 31 public static T DocumentGet<T>(string key, string bucketName = "xftbmb") 32 { 33 try 34 { 35 var bucket = ClusterHelper.GetBucket(bucketName); 36 37 var result = bucket.GetDocument<T>(key); 38 if (result.Success) 39 { 40 return result.Content; 41 } 42 return default(T); 43 44 } 45 catch (Exception) 46 { 47 48 return default(T); 49 } 50 51 } 52 53 54 /// <summary> 55 /// 在Bucket中添加/更新一个文档 56 /// </summary> 57 /// <typeparam name="T">动态数据类型, The actual document value to store. This can be a scalar value, an object, or a dynamic type.</typeparam> 58 /// <param name="key">文档唯一标识</param> 59 /// <param name="content">动态数据</param> 60 /// <param name="expiry">过期时间(秒),如果小于或等于0表示持久存在</param> 61 /// <param name="bucketName">指定Bucket名称</param> 62 /// <returns></returns> 63 public static bool DocumentUpsert<T>(string key, T content, int expiry = 0, string bucketName = "xftbmb") 64 { 65 try 66 { 67 if (expiry < 0) 68 expiry = 0; 69 var bucket = ClusterHelper.GetBucket(bucketName); 70 71 var result = bucket.Upsert( 72 new Document<T> 73 { 74 Id = key, 75 Content = content, 76 Expiry = (uint)(expiry * 1000) //将秒转换为毫秒 77 }); 78 if (result.Success) 79 return true; 80 return false; 81 } 82 catch (Exception) 83 { 84 85 return false; 86 } 87 88 } 89 90 91 /// <summary> 92 /// 在Bucket中删除一个文档 93 /// </summary> 94 /// <param name="key">文档唯一标识</param> 95 /// <param name="bucketName">指定Bucket名称</param> 96 /// <returns></returns> 97 public static bool DocumentRemove(string key, string bucketName = "xftbmb") 98 { 99 var bucket = ClusterHelper.GetBucket(bucketName); 100 { 101 var result = bucket.Remove(key); 102 if (result.Success) 103 return true; 104 return false; 105 } 106 } 107 }
<configSections> <sectionGroup name="couchbaseClients"> <section name="couchbase" type="Couchbase.Configuration.Client.Providers.CouchbaseClientSection, Couchbase.NetClient" /> </sectionGroup> </configSections> <!--Couchbase客户端配置,参考:http://developer.couchbase.com/documentation/server/4.1-dp/sdks/dotnet-2.2/configuring-the-client.html--> <couchbaseClients> <couchbase useSsl="false" > <servers> <!--test--> <add uri="http://172.16.1.248:8091/pools"></add> <!--vpn--> <!--<add uri="http://173.23.221.72:8091/pools"></add>--> </servers> <buckets> <add name="default" useSsl="false" password="" > <connectionPool name="custom" maxSize="10" minSize="5" sendTimeout="12000"></connectionPool> </add> <add name="xftbmb" useSsl="false" password="123456" > <connectionPool name="custom" maxSize="10" minSize="5" sendTimeout="12000"></connectionPool> </add> </buckets> </couchbase> </couchbaseClients> ------ <runtime> <!--约束Newtonsoft.Json版本--> <dependentAssembly> <assemblyIdentity name="Newtonsoft.Json" culture="neutral" publicKeyToken="30ad4fe6b2a6aeed" /> <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" /> </dependentAssembly> </assemblyBinding> </runtime>
以上是关于CouchBase快速配置的主要内容,如果未能解决你的问题,请参考以下文章
带有 Spring-boot XML 配置的 Couchbase 5.0
2. CouchBase集群安装和配置(01)-CouchBase从0到50