Details
-
Task
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
None
-
None
Description
Performance parsing binary resultset is slow compared to text resultset.
This is due to node.js Buffer.subarray that is very slow (issue).
current performance selecting 1000 rows of int + varchar 32:
- text : 3530 operations per second
- binary : 2352 operations per second.
2352 operations per second is now 3101 operations per second with correction. This can still be improved when node.js (chromium issue) is corrected and released in node.js