Skip to content
Snippets Groups Projects
Commit 49bc8fdf authored by Karthic Rao's avatar Karthic Rao
Browse files

correcting the filename in the execution instruction and adding reference to rocksdb headers

parent 3ed5310b
No related branches found
No related tags found
No related merge requests found
......@@ -13,16 +13,16 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
* compile : g++ rocks_merge.cc <path_to_rocksDB_installation>/librocksdb.so.4.1 --std=c++11 -lstdc++fs
* compile : g++ merge.cc <path_to_rocksDB_installation>/librocksdb.so.4.1 --std=c++11 -lstdc++fs
* usage : ./<executable> <folder_having_rocksDB_directories_to_be_merged> <destination_folder>
*
*
*/
#include <fstream>
#include <cstdio>
#include <iostream>
#include <string>
//find the rocksdb headers here https://github.com/facebook/rocksdb/tree/master/include/rocksdb
#include "rocksdb/db.h"
#include "rocksdb/options.h"
......
......@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
* compile : g++ rocks_merge.cc <path_to_rocksDB_installation>/librocksdb.so.4.1 --std=c++11 -lstdc++fs
* compile : g++ merge_heap.cc <path_to_rocksDB_installation>/librocksdb.so.4.1 --std=c++11 -lstdc++fs
* usage : ./<executable> <folder_having_rocksDB_directories_to_be_merged> <destination_folder>
*
*/
......@@ -24,7 +24,7 @@
#include <string>
#include <queue>
#include <vector>
//rocksdb headers can be found here https://github.com/facebook/rocksdb/tree/master/include/rocksdb
#include "rocksdb/db.h"
#include "rocksdb/options.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment