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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,20 @@ Dalli Changelog
4
4
Unreleased
5
5
==========
6
6
7
+
Performance:
8
+
9
+
- Avoid repeated `RUBY_ENGINE` checks on every socket read (#1103)
10
+
- Moved the JRuby branch from a runtime `if` inside `ConnectionManager#read` to a class-level conditional method definition, so the check happens once at load time rather than on every read call
11
+
- Thanks to Jean Boussier for this contribution
12
+
13
+
- Eliminate per-call array allocations in `ResponseProcessor` (#1104)
14
+
- Token sets passed to `error_on_unexpected!` (e.g. `[VA, EN, HD]`) were allocated as new arrays on every invocation; replaced with frozen constants defined once at class load time
15
+
- Thanks to Jean Boussier for this contribution
16
+
17
+
- Avoid string copies when building request commands in `RequestFormatter` (#1106)
18
+
- Changed `cmd + TERMINATOR` to `cmd << TERMINATOR`; since `cmd` is always a mutable string, the in-place append avoids copying the entire command string just to append two bytes
0 commit comments