我可以使用Node.js在服务器端获取sql = "UPDATE board
SET pages = %s
WHERE ASIN = %s"
和request arriving time
的时间统计信息
由于涉及同步服务器/客户端时间,我们不使用这种方式
response arriving time
// chrome client
request('/a', { current: Date.now() })
.then(resp => {
console.log(Date.now() - resp.current) // response arriving time
})