kylebarron commented on PR #39018:
URL: https://github.com/apache/arrow/pull/39018#issuecomment-1835492273
I tested
```js
const arrow = require('./targets/apache-arrow');
console.time("create data type")
for (let i = 0; i < 100000; i++) {
new arrow.Uint16();
}
console.timeEnd("create data type")
```
on this branch and it was 3.861ms, and on main it was 1.587ms. So if my
moving of zeros is correct, each class instantiation is an extra 22 nanoseconds?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]