-
Notifications
You must be signed in to change notification settings - Fork 2
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
Conversation
src/otters_conn_zipkin.erl
Outdated
-define(T_i16, 6). | ||
-define(T_i32, 8). | ||
-define(T_i64, 10). | ||
-define(T_string, 11). |
There was a problem hiding this comment.
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.
src/otters_conn_zipkin.erl
Outdated
@@ -28,6 +28,13 @@ | |||
-compile(export_all). | |||
-include("otters.hrl"). | |||
|
|||
-define(T_i16, 6). |
There was a problem hiding this comment.
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.
src/otters_conn_zipkin.erl
Outdated
@@ -28,6 +28,13 @@ | |||
-compile(export_all). | |||
-include("otters.hrl"). | |||
|
|||
-define(T_i16, 6). | |||
-define(T_i32, 8). | |||
-define(T_i64, 10). |
There was a problem hiding this comment.
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.
src/otters_conn_zipkin.erl
Outdated
@@ -28,6 +28,13 @@ | |||
-compile(export_all). | |||
-include("otters.hrl"). | |||
|
|||
-define(T_i16, 6). | |||
-define(T_i32, 8). |
There was a problem hiding this comment.
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.
src/otters_conn_zipkin.erl
Outdated
-define(T_i64, 10). | ||
-define(T_string, 11). | ||
-define(T_struct, 12). | ||
-define(T_list, 15). |
There was a problem hiding this comment.
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.
src/otters_conn_zipkin.erl
Outdated
-define(T_i32, 8). | ||
-define(T_i64, 10). | ||
-define(T_string, 11). | ||
-define(T_struct, 12). |
There was a problem hiding this comment.
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.
Rewrite encoding to use binary building. ~40x performance boost for package encoding!