Skip to content
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

chore: remove redundant calls to GetSlice #4635

Merged
merged 1 commit into from
Feb 20, 2025
Merged

chore: remove redundant calls to GetSlice #4635

merged 1 commit into from
Feb 20, 2025

Conversation

romange
Copy link
Collaborator

@romange romange commented Feb 20, 2025

No description provided.

@romange romange requested a review from kostasrim February 20, 2025 10:39
auto& db_slice = op_args.GetDbSlice();

DbSlice::Iterator it = DbSlice::Iterator::FromPrime(prime_it);
if (prime_it->second.HasExpire()) {
it = db_slice.ExpireIfNeeded(op_args.db_cntx, it).it;
if (!IsValid(it))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We do a deep copy within FromPrime right ? We can avoid it. ExpireIfNeeded is overloaded and it accepts a (PrimeIterator). If we return false below we avoided an allocation

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also second question, don't we need IsValid() below regardless ?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can we pass an invalid iterator to ScanCb? I remember that @adiholden fixed a bug recently around this area

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@romange I do not know that's why I asked. Also we can avoid the copy within FromPrime if we call ExpireIfNeeded(const Context& cntx, PrimeIterator it) right ?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we can not pass invalid iterator to scancb

Verified

This commit was signed with the committer’s verified signature.
ljharb Jordan Harband
@romange romange merged commit 59719a1 into main Feb 20, 2025
10 checks passed
@romange romange deleted the Pr6 branch February 20, 2025 15:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants