Do we need to close Couchbase bucket object in Node.js explicitly

Do we need to close Couchbase bucket object in Node.js explicitly?
If yes, when?

Hey @mde4141,
Due to the nature of Couchbase connections being most performant when long-lived, the SDK will maintain connections to the cluster until you explicitly request that the client be disconnected. In most cases, you should never need to disconnect from the cluster except when cleaning up prior to your application shutting down.
Cheers, Brett

1 Like