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

Increment kvstore's non_empty_dicts only on first insert #13528

Merged
merged 3 commits into from
Sep 11, 2024

Conversation

sundb
Copy link
Collaborator

@sundb sundb commented Sep 9, 2024

Found by @oranagra

Currently, when the size of dict becomes 1, we do not check whether delta is positive or negative.
As a result, non_empty_dicts is still incremented when the size of dict changes from 2 to 1.
We should only increment non_empty_dicts when delta is positive, as this indicates the first time an element is inserted into the dict.

@sundb sundb requested review from guybe7 and oranagra September 9, 2024 11:42
@sundb sundb changed the title Increment kvstore's non_empty_dicts only on first insert when delta is positive Increment kvstore's non_empty_dicts only on first insert Sep 10, 2024
oranagra
oranagra previously approved these changes Sep 10, 2024
@sundb sundb merged commit 2dd4cca into redis:unstable Sep 11, 2024
14 checks passed
@sundb sundb deleted the fix_kvstore_non_empty_counter branch September 11, 2024 01:40
YaacovHazan pushed a commit that referenced this pull request Nov 4, 2024
Found by @oranagra 

Currently, when the size of dict becomes 1, we do not check whether
`delta` is positive or negative.
As a result, `non_empty_dicts` is still incremented when the size of
dict changes from 2 to 1.
We should only increment `non_empty_dicts` when `delta` is positive, as
this indicates the first time an element is inserted into the dict.

---------

Co-authored-by: oranagra <[email protected]>
YaacovHazan pushed a commit that referenced this pull request Jan 6, 2025
Found by @oranagra 

Currently, when the size of dict becomes 1, we do not check whether
`delta` is positive or negative.
As a result, `non_empty_dicts` is still incremented when the size of
dict changes from 2 to 1.
We should only increment `non_empty_dicts` when `delta` is positive, as
this indicates the first time an element is inserted into the dict.

---------

Co-authored-by: oranagra <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Development

Successfully merging this pull request may close these issues.

2 participants