-
-
Notifications
You must be signed in to change notification settings - Fork 37.3k
bitfields? #29126
Copy link
Copy link
Closed
Labels
lib / srcIssues and PRs involving general changes in the lib/ or src/ directories.Issues and PRs involving general changes in the lib/ or src/ directories.
Description
Activity
Metadata
Metadata
Assignees
Labels
lib / srcIssues and PRs involving general changes in the lib/ or src/ directories.Issues and PRs involving general changes in the lib/ or src/ directories.
Is there any reason why bitfields are not used more in NodeJS?
e.g. the readable and writable state footprint can easily be reduced by more than 50% by switching all of those different boolean flags into a single 16/32 bit bitfield. Reducing memory usage and improving CPU cache access.
Is this something worth investigating?