update special-key-space comments

This commit is contained in:
chaoguang 2020-05-11 16:30:08 -07:00 committed by Chaoguang Lin
parent c6a09559ee
commit bb1b5c4f9d
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@
// If the corresponding key is not in this special key range, it will move as far as possible to adjust the offset to 1 // If the corresponding key is not in this special key range, it will move as far as possible to adjust the offset to 1
// It does have overhead here since we query all keys twice in the worst case. // It does have overhead here since we query all keys twice in the worst case.
// However, moving the KeySelector while handling other parameters like limits makes the code much more complex and hard // However, moving the KeySelector while handling other parameters like limits makes the code much more complex and hard
// to maintain Separate each part to make the code easy to understand and more compact // to maintain; Thus, separate each part to make the code easy to understand and more compact
ACTOR Future<Void> SpecialKeyRangeBaseImpl::normalizeKeySelectorActor(const SpecialKeyRangeBaseImpl* pkrImpl, ACTOR Future<Void> SpecialKeyRangeBaseImpl::normalizeKeySelectorActor(const SpecialKeyRangeBaseImpl* pkrImpl,
Reference<ReadYourWritesTransaction> ryw, Reference<ReadYourWritesTransaction> ryw,
KeySelector* ks) { KeySelector* ks) {