我在项目中实现了记录器,所以我不知道哪种方法可以实现
条件:
1)项目流量巨大
2)每条路线-有效负载并在记录器中添加了一些参数
示例
class Logger {
constructor (x, y) {
this.xx = x;
this.yy = y;
}
updatexy (x, y) {
this.xx = x;
this.yy = y;
}
}
1)创建多个类实例并使用它。
let create = new Logger('z','f');
2)在类中创建函数并使用它。 (一次创建的对象)
let create = new Logger('z','f');
create.updatexy('x','y');
任何性能问题的主要不同之处