git-hulk commented on code in PR #1215: URL: https://github.com/apache/incubator-kvrocks/pull/1215#discussion_r1089604487
########## kvrocks.conf: ########## @@ -726,6 +726,13 @@ rocksdb.max_bytes_for_level_base 268435456 # Default: 10 rocksdb.max_bytes_for_level_multiplier 10 +# If yes, RocksDB will prefetch some of data asynchronously. +# RocksDB apply it if reads are sequential and its internal automatic +# prefetching. Review Comment: ```suggestion # If yes, RocksDB will try to read asynchronously and in parallel as much as possible to hide IO latency. # This feature only takes effect in Iterators and MultiGet. # In iterators, it will prefetch data asynchronously in the background for each file being iterated on. # In MultiGet, it will read the necessary data blocks from those files in parallel as much as possible. ``` -- 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]
