Summary:
Missing this function will cause RandomAccessFileReader not doing alignment in Direct IO mode, which introduce an IOError: invalid argument.
Closes https://github.com/facebook/rocksdb/pull/1900
Differential Revision:
D4601261
Pulled By: lightmark
fbshipit-source-id:
c3eadf1
return file_->InvalidateCache(offset, length);
}
+ virtual bool use_direct_io() const override {
+ return file_->use_direct_io();
+ }
+
private:
bool TryReadFromCache_(uint64_t offset, size_t n, size_t* cached_len,
char* scratch) const {