반응형 C++1 rocksdb sample code on ubuntu 18.04 참고: https://techoverflow.net/2020/01/28/rocksdb-minimal-example-in-c/ RocksDB minimal example in C++ – TechOverflow This minimal example shows how to open a RocksDB database, write a key and how to read it. #include #include #include using namespace std; int main(int argc, char** argv) { rocksdb::DB* db; rocksdb::Options options; options.create_if_missing = true; rocksd techoverflow.net 1. 먼저 ro.. 2022. 2. 27. 이전 1 다음 반응형