最近重拾 nodejs, 照抄了个简单的签到程序, 挂在服务器上用, 使用 pm2 启动, 但发现为啥内存占用那么高 就这和 hello word 一样简单的代码, 显示内存占用 63.6mb, 到底是我写的问题, 还是什么原因. 看了眼 docker 里跑的其他几个签到服务, 大多在十几 M 左右, 用 chatgpt 把这段代码转下, 同样用 pm2 启动, 也是占用非常少.
const schedule = require('node-schedule')
const axios = require('axios')
const profiles = require('./config')
const getNowTime = () => {
return new Date()['toLocaleDateString']()
}
const request = () => {
profiles.forEach(async item => {
const {url, headers} = item
console.log(`\n\n------${getNowTime()} - ${url}:开始签到------\n`)
const res = await axios({
url,
method: 'post',
headers,
})
if (res && res.data) {
console.log(`------ ${getNowTime()} 签到成功 ------\n`)
console.log(JSON.stringify(res.data))
} else {
console.log(`------ ${getNowTime()} 签到失败 ------\n`)
console.log(res)
}
})
}
const checkin = () => {
schedule.scheduleJob('0 0 7 * * *', () => {
setTimeout(() => {
request()
}, Math.random() * 10 * 60 * 1000)
})
}
console.log(`开始执行任务-${getNowTime()}`)
checkin()
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.