From b7ae81d712c37a7ea84251527e6619edcdb8067a Mon Sep 17 00:00:00 2001 From: a00817524 Date: Mon, 6 Nov 2023 18:23:45 +0000 Subject: [PATCH] reverting changes of async io rocksdb option as this is version dependent --- src/storage/rocksdb.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage/rocksdb.cpp b/src/storage/rocksdb.cpp index e4c1d45ca..8c4429f3b 100644 --- a/src/storage/rocksdb.cpp +++ b/src/storage/rocksdb.cpp @@ -322,7 +322,7 @@ StorageToken *RocksDBStorageProvider::begin_retrieve(struct aeEventLoop *el, aeP } auto opts = ReadOptions(); - //opts.async_io = true; + opts.async_io = true; (*m_pfactory->m_wqueue)->AddWorkFunction([this, el, callback, tok, opts]{ std::vector veckeysStr; std::vector veckeys;