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

[Feature] TimerMessageStore#getDequeueTps optimization #8512

Open
847850277 opened this issue Aug 9, 2024 · 0 comments · May be fixed by #8513
Open

[Feature] TimerMessageStore#getDequeueTps optimization #8512

847850277 opened this issue Aug 9, 2024 · 0 comments · May be fixed by #8513

Comments

@847850277
Copy link

Is Your Feature Request Related to a Problem?

public float getDequeueTps() {
        return perfCounterTicks.getCounter("dequeue_put").getLastTps();
    }

this may can change to DEQUEUE_PUT

Describe the Solution You'd Like

public float getDequeueTps() {
        return perfCounterTicks.getCounter(DEQUEUE_PUT).getLastTps();
    }

Describe Alternatives You've Considered

change to DEQUEUE_PUT

Additional Context

No response

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant