FATAL ERROR: v8::Object::SetInternalField() Internal field out of bounds on Node js using node-cache

FATAL ERROR: v8::Object::SetInternalField() Internal field out of bounds on Node js using node-cache

我有一个包含大量数据的 api 导出,所以我尝试使用节点缓存,这样 api 会更快,因为需要超过 2 分钟才能获取数据,我我对此很陌生,所以我找到了以下代码: 备注:环境节点js/express

const NodeCache = require("node-cache");
const axios = require('axios');
const myCache = new NodeCache({stdTTL:100000})
 axios.get('http://localhost:5000/test/example)
        .then(function (response) {
            console.log(response)
            myCache.set("exampleCache",response,10000);
            res.send(response)

任何建议或推荐都会很棒!

解决方案是使用缓冲区,但由于我们有很多数据,因此增加数据库的内存是解决方案