From c2b999a94fa9fbdd0ea71e55b424222af7d4042e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E4=BA=88=E6=9B=88?= <10222140454@stu.ecnu.edu.cn> Date: Tue, 29 Oct 2024 17:42:14 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- leveldb_base/table/block.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/leveldb_base/table/block.cc b/leveldb_base/table/block.cc index 57dba4a..df9e901 100644 --- a/leveldb_base/table/block.cc +++ b/leveldb_base/table/block.cc @@ -229,7 +229,7 @@ class Block::Iter : public Iterator { return; } if (Compare(key_, target) >= 0) { - // 重新解析record-陈予曈 + // 解析value-陈予曈 std::string value_with_ttl(value_.data(), value_.size()); if (value_with_ttl.size() >= 19) { std::string expiration_time_str = value_with_ttl.substr(value_with_ttl.size() - 19); // 提取过期时间戳