Summary
The default configuration for CFCouchbase is located in /cfcouchbase/config/CouchbaseConfig.cfc
. You can create the CouchbaseClient
with no configuration and it will connect to the default bucket on 127.0.0.1:8091. However, there are more ways to configure the Couchbase client via the config
argument of the constructor so it can connect to your server and options of choice:
Pass a config structure
Pass a config CFC
Hint The config CFC is the most contained and portable way to store your configuration.
Last updated