riemann / riemann-dash

An HTTP dashboard for Riemann.
MIT License
248 stars 102 forks source link

Optimize PriorityQueue.js #100

Closed CAFxX closed 9 years ago

CAFxX commented 9 years ago

update shows up as the hottest function in the chrome profiler. Avoid pointlessly serializing over-and-over the same values: this also helps the JIT because the shape of the objects does not change as often.

aphyr commented 9 years ago

Oh goodness, thank you. Long overdue.