Rochus 2 days ago

Cool. You write "C++11 >= compatible compiler (GCC 4.8+ or Clang 3.4+)". From that can I conclude that you are using an older version of RocksDB (more recent versions require C++17)? Which version? What's the motivation for an older version?

1
hashmak_jsn 2 days ago

Yes, I am using an older rocksdb version 6.29.5 that was released in 2022. The main reason for this choice is that many embedded products still rely on C++11 for application development.Additionally, it offers backward compatibility, making it a practical and stable choice for such applications.

Rochus 2 days ago

That makes sense, thanks.