소스 검색

add some comments

main
GUJIEJASON 3 주 전
부모
커밋
604470f2c4
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. +2
    -0
      db/db_impl.cc

+ 2
- 0
db/db_impl.cc 파일 보기

@ -899,6 +899,7 @@ Status DBImpl::InstallCompactionResults(CompactionState* compact) {
return versions_->LogAndApply(compact->compaction->edit(), &mutex_);
}
/* TODO: Check if a string consists entirely of digits */
bool isAllDigits(const std::string& str) {
for (char c : str) {
if (!isdigit(c)) {
@ -907,6 +908,7 @@ bool isAllDigits(const std::string& str) {
}
return true;
}
/* --------------------------- */
Status DBImpl::DoCompactionWork(CompactionState* compact) {
const uint64_t start_micros = env_->NowMicros();

불러오는 중...
취소
저장