can you share a gist of the optimization?
# reaktive
s
can you share a gist of the optimization?
a
What kind of gist?
s
as in a summary of the performance improvements you made
a
Before the PR a simple immutable list was used for back pressure queue in Kotlin/Native. This affected performance when the queue was growing. Now we use a custom implementation of the linked list based on atomic references: https://github.com/badoo/Reaktive/pull/508/files#diff-53986f5c93dcc883b87a5e3f6ab7bd95
s
gotcha, thanks for explaining!
👍 1