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


##########
src/storage/redis_db.cc:
##########
@@ -99,10 +99,18 @@ rocksdb::Status Database::GetMetadata(RedisTypes types, 
const Slice &ns_key, std
 }
 
 rocksdb::Status Database::GetRawMetadata(const Slice &ns_key, std::string 
*bytes) {
+  return getRaw(ns_key, bytes);
+}
+
+rocksdb::Status Database::GetRawData(const Slice &key, std::string *bytes) {
+  return getRaw(key, bytes);
+}
+
+rocksdb::Status Database::getRaw(const Slice &key, std::string *bytes) {

Review Comment:
   Could you explain a little about these newly-added methods?



-- 
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