I use node v14.15.0 and “couchbase”: “^3.0.7” on my local windows OS
and in the dev server Debian OS is node v14.15. too
I have a problem with large memory using.
For test I made small aplication
couchbase = require(‘couchbase’)
const dbConfig = {
“connectionString”: “couchbase://xx.x.xx.xx”,
“bucketName”: “cpanel”,
“username”: “developer”,
“password”: “%Rerrt3m;”,
}
const cluster = new couchbase.Cluster(dbConfig.connectionString, {
username: dbConfig.username,
password: dbConfig.password,
});
cluster.bucket(dbConfig.bucketName);
(async ()=>{
console.log(“Start”);
console.log( await cluster.query("select * from cms-deploy
") );
})();
And have result https://prnt.sc/vqbg5o
STEST.JS on server usingin 10 times more memory than Windows and memory usage is growing
What is the reason ?