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
perf: streamline tablet payload parsing in _set_result
- Replace double dict lookup ('in' + .get()) with single .get() + None check
- Use tuple unpacking instead of three separate indexing operations
- Guard add_tablet with 'if tablet is not None' (from_row can return None
for empty replicas — previously this was silently passed through)
- Inline single-use locals (protocol, keyspace, table)
Saves ~13 ns on the tablet-hit path (noise-level, but cleaner code).
0 commit comments