CFCouchbase SDK
Search…
Introduction
What's New With 2.2.0
What's New With 2.0.0
About This Book
Authors
Overview
Installation
Configuration
Settings
Structure
Summary
Usage
Help & Support
Powered By
GitBook
Structure
The simplest way to get started using the SDK is to simply pass a struct of config settings into the constructor when you create the client.
1
couchbase
=
new
cfcouchbase
.
CouchbaseClient
(
2
{
3
servers
=
[
4
"http://cache1:8091"
,
5
"http://cache2:8091"
6
],
7
bucketName
=
"myBucket"
,
8
viewTimeout
=
1000
9
}
10
);
Copied!
Previous
Settings
Next
Summary
Last modified
4yr ago
Copy link
Edit on GitHub