PragmaTwice commented on code in PR #3313:
URL: https://github.com/apache/kvrocks/pull/3313#discussion_r2650074768


##########
src/common/string_util.cc:
##########
@@ -556,4 +557,9 @@ std::string StringNext(std::string s) {
   return s;
 }
 
+std::string ComputeXXH3Hash(const std::string &data) {
+  uint64_t hash = XXH3_64bits(data.data(), data.size());

Review Comment:
   ```suggestion
     XXH64_hash_t hash = XXH3_64bits(data.data(), data.size());
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to