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

feat(resp): optimize simple string "OK" construction #2627

Merged
merged 1 commit into from
Oct 31, 2024

Conversation

RiversJin
Copy link
Contributor

… pre-allocated memory

By pre-allocating memory, the speed rate of simple strings can be improved. Additionally, using a predefined "+OK\r\n" string eliminates the need for string concatenation when returning "OK".

It solves #2626

@RiversJin RiversJin force-pushed the opt_simple_ok branch 3 times, most recently from 416b182 to a2a8953 Compare October 29, 2024 06:22
@RiversJin RiversJin requested a review from mapleFU October 29, 2024 08:48
Copy link
Member

@mapleFU mapleFU left a comment

Choose a reason for hiding this comment

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

Rest LGTM

std::string Error(const Status &s) { return RESP_PREFIX_ERROR + StatusToRedisErrorMsg(s) + CRLF; }
std::string Error(const Status &s) {
std::string res;
res.reserve(s.Msg().size() + 3); // 1 for '-', 2 for CRLF
Copy link
Member

Choose a reason for hiding this comment

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

I wonder that s.Msg() might not be really the final string generation when redisErrorPrefixMapping in StatusToRedisErrorMsg contains the specific error message.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Yes, you're absolutely right; I overlooked the possibility that the text could come directly from redisErrorPrefixMapping. However, performing a hash lookup here to confirm the reserved length might be a bit heavy.

Or, do you think it’s a good idea to directly use std::max(16, s.Msg().size() + 3)? In most cases, the minimum allocation unit by the memory allocator is often two pointer lengths, and for the contents within redisErrorPrefixMapping, 16 bytes should be sufficient.

Copy link
Member

Choose a reason for hiding this comment

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

However, performing a hash lookup here to confirm the reserved length might be a bit heavy.

As the hash table is small and anyway it would be built 😅, I think construct error string firstly is ok...

do you think it’s a good idea to directly use std::max(16, s.Msg().size() + 3)

It would be good if it's a critical path, but I don't think the error path worth this, since the current code is clear to understand and Error path might not a bottleneck...

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Ok, I've reverted this modification.

@RiversJin RiversJin force-pushed the opt_simple_ok branch 2 times, most recently from 043e113 to dff425f Compare October 29, 2024 09:21
mapleFU
mapleFU previously approved these changes Oct 29, 2024
@mapleFU
Copy link
Member

mapleFU commented Oct 29, 2024

Would you mind fix the lint?

@RiversJin RiversJin force-pushed the opt_simple_ok branch 2 times, most recently from 048fa6e to c58a7ff Compare October 29, 2024 11:07
@RiversJin
Copy link
Contributor Author

Would you mind fix the lint?

Sure but ...
From the logs, this is not just a lint issue, but rather due to setting RESP_OK as the type std::string_view. Some function parameters accept const string& instead of std::string_view. If we change everything to accept std::string_view, I think it might require significant modifications...

Since std::string_view cannot be implicitly converted to std::string, and I want to implement RESP_OK as a constexpr variable, I changed it to use constexpr char[].

@mapleFU
Copy link
Member

mapleFU commented Oct 29, 2024

Since std::string_view cannot be implicitly converted to std::string, and I want to implement RESP_OK as a constexpr variable, I changed it to use constexpr char[].

This not fixes the problem, we can either use const static inline std::string, or just cast once on "Reply". const char[] to std::string also applies copy...

@RiversJin
Copy link
Contributor Author

Since std::string_view cannot be implicitly converted to std::string, and I want to implement RESP_OK as a constexpr variable, I changed it to use constexpr char[].由于 std::string_view 无法隐式转换为 std::string,而且我想将 RESP_OK 实现为 constexpr 变量,因此我将其改为使用 constexpr char[]。

This not fixes the problem, we can either use const static inline std::string, or just cast once on "Reply". const char[] to std::string also applies copy...这并不能解决问题,我们可以使用 const static inline std::string ,或者只在"Reply"上进行一次转换。 const char[]std::string 也适用于复制...

Ok u're right, I've done

std::string SimpleString(const std::string &data);
std::string SimpleString(std::string_view data);

static inline std::string RESP_OK = RESP_PREFIX_SIMPLE_STRING "OK" CRLF;
Copy link
Member

Choose a reason for hiding this comment

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

Should also being const?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

sorry hhh

… pre-allocated memory

By pre-allocating memory, the speed rate of simple strings can be improved.
Additionally, using a predefined "+OK\r\n" string eliminates the need for string concatenation when returning "OK".
@PragmaTwice PragmaTwice changed the title feat(simplestring): optimize simple string construction speed through… feat(resp): optimize simple string "OK" construction Oct 31, 2024
Copy link

@PragmaTwice PragmaTwice merged commit 3a51869 into apache:unstable Oct 31, 2024
33 checks passed
@RiversJin RiversJin deleted the opt_simple_ok branch October 31, 2024 06:00
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.

3 participants