You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recently I did a small optimization in the asset decoding that reduces the memory used during beats initialization by 20% at #42180. Looking at the code I think we can improve the cpu time as well(5-10%) by simply switching from compress/zlib to klauspost/compress/zlib.
This will likely cause changes in all the autogenerated fields.go files in the repo after running a make update. I don't fully understand how the asset encoding works but I assume that if we change both encoder and decoder so that they are compatible than it shouldn't cause any problems.
The text was updated successfully, but these errors were encountered:
Recently I did a small optimization in the asset decoding that reduces the memory used during beats initialization by 20% at #42180. Looking at the code I think we can improve the cpu time as well(5-10%) by simply switching from compress/zlib to klauspost/compress/zlib.
This will likely cause changes in all the autogenerated fields.go files in the repo after running a
make update
. I don't fully understand how the asset encoding works but I assume that if we change both encoder and decoder so that they are compatible than it shouldn't cause any problems.The text was updated successfully, but these errors were encountered: