# Settings

There are a number of configuration options you can set for the client, but most of them can be left at their default value. To see a full list of options, look in the `/cfcouchbase/config/CouchbaseConfig.cfc` or the user friendly [API Docs](http://apidocs.ortussolutions.com/cfcouchbase/2.0.0). Here are some of the most common setting you will need to use:

## Common Config Settings

| Setting           | Type    | Default        | Description                                                                                                                                                                                                                                         |
| ----------------- | ------- | -------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| servers           | any     | 127.0.0.1:8091 | The list of servers to connect to. Can be comma-delimited list or an array. If you have more than one server in your cluster, you only need to specify one, but adding more than one will help in the event a node is down when the client connect. |
| bucketName        | string  | default        | The name of the bucket to connect to on the cluster. This is case-sensitive                                                                                                                                                                         |
| password          | string  |                | The optional password of the bucket.                                                                                                                                                                                                                |
| caseSensitiveKeys | boolean | false          | Keys in Couchbase are case sensitive by, the SDK by default converts all keys to lowercase, setting this to *true* will prevent this behavior                                                                                                       |
| dataMarshaller    | any     |                | The data marshaller to use for serializations and deserializations, please put the class path or the instance of the marshaller to use. Remember that it must implement our interface: `cfcouchbase.data.IDataMarshaller`                           |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://cfcouchbase.ortusbooks.com/configuration/settings.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
