-
Notifications
You must be signed in to change notification settings - Fork 24k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve performance of hfe listpack #13279
Conversation
@sundb I addressed your comments and moved lpBatchInsert() as a separate function. Let's see if we are more comfortable with this one. Maybe we should add a comment that this function might be merged with lpInsert() later in future. |
@tezc yeah, it's clear now. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, but not look closely at the t_hash part.
Co-authored-by: debing.sun <[email protected]>
) In #13279 (found by @filipecosta90), for custom lookups, we introduce a comparison function for `lpFind()` to compare entry, but it also introduces some overhead. To avoid the overhead of function pointer calls: 1. Extract the lpFindCb() method into a lpFindCbInternal() method that is easier to inline. 2. Use unlikely to annotate the comparison method, as can only success once. --------- Co-authored-by: Ozan Tezcan <[email protected]>
This PR contains a few optimizations for hfe listpack.
Hfe fields are ordered by TTL in the listpack. There are two cases that we want to search listpack according to TTLs:
Iterating with lpNext() to compare TTLs has a performance cost as lpNext() calls lpValidateIntegrity() for each entry. Instead, this PR adds
lpFindCb()
to the listpack which accepts a comparator callback. It preserves same validation logic of lpFind() which is faster than search with lpNext().We have field name, value, ttl for a single hfe field. Inserting these items one by one to listpack is costly. Especially, as we place fields according to TTL, most additions will end up in the middle of the listpack. Each insert causes realloc + memmove. This PR introduces
lpBatchInsert()
to add multiple items in one go.For hsetf, if we are going to update value and TTL at the same time, currently, we update the value first and later update the TTL (two distinct listpack operation). This PR improves it by doing it with a single update operation.