node js和postgresql减少了Cpu的使用

时间:2015-12-28 09:14:26

标签: node.js postgresql

在Node js中我使用postgresql Database。当我在DB中插入批量数据时,CPU使用率增加了10%到15%。

我想将cpu使用率降低5%到6%。

function execute(count) {
    step(0);
    function step(i) {
        if (i < count) {
            client.query("INSERT INTO test1 (firstname, lastname) values($1, $2)", ['Ronald', 'McDonald'], function (err, respose) {
              //  console.log(respose);
                console.log("insert");
                step(++i);
            });
        }
        else {
            selectQuery();
        }
    }
}

1 个答案:

答案 0 :(得分:0)

PostgreSQL 在其配置文件中有一个指令可以缓存数据

shared_buffers=3GB For 16 GB of RAM

此值基于系统 RAM 量,应为 RAM 的 20%