Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Encoding performance #2

Merged
merged 10 commits into from
Apr 13, 2017
Merged

Encoding performance #2

merged 10 commits into from
Apr 13, 2017

Conversation

Licenser
Copy link
Member

Rewrite encoding to use binary building. ~40x performance boost for package encoding!

-define(T_i16, 6).
-define(T_i32, 8).
-define(T_i64, 10).
-define(T_string, 11).
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Invalid macro name T_string on line 34. Use UPPER_CASE.

@@ -28,6 +28,13 @@
-compile(export_all).
-include("otters.hrl").

-define(T_i16, 6).
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Invalid macro name T_i16 on line 31. Use UPPER_CASE.

@@ -28,6 +28,13 @@
-compile(export_all).
-include("otters.hrl").

-define(T_i16, 6).
-define(T_i32, 8).
-define(T_i64, 10).
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Invalid macro name T_i64 on line 33. Use UPPER_CASE.

@@ -28,6 +28,13 @@
-compile(export_all).
-include("otters.hrl").

-define(T_i16, 6).
-define(T_i32, 8).
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Invalid macro name T_i32 on line 32. Use UPPER_CASE.

-define(T_i64, 10).
-define(T_string, 11).
-define(T_struct, 12).
-define(T_list, 15).
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Invalid macro name T_list on line 36. Use UPPER_CASE.

-define(T_i32, 8).
-define(T_i64, 10).
-define(T_string, 11).
-define(T_struct, 12).
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Invalid macro name T_struct on line 35. Use UPPER_CASE.

@Licenser Licenser merged commit ea9f2c6 into dev Apr 13, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants