Revision 3f407b065c348e8b3be6374539f6d864fba7c9e6 authored by Igor Canadi on 01 December 2016, 18:00:56 UTC, committed by Facebook Github Bot on 01 December 2016, 18:09:22 UTC
Summary:
Now that we have userspace persisted cache, we don't need flashcache anymore.
Closes https://github.com/facebook/rocksdb/pull/1588

Differential Revision: D4245114

Pulled By: igorcanadi

fbshipit-source-id: e2c1c72
1 parent b77007d
Raw File
rocksdb_dump_test.sh
TESTDIR=`mktemp -d /tmp/rocksdb-dump-test.XXXXX`
DUMPFILE="tools/sample-dump.dmp"

# Verify that the sample dump file is undumpable and then redumpable.
./rocksdb_undump --dump_location=$DUMPFILE --db_path=$TESTDIR/db
./rocksdb_dump --anonymous --db_path=$TESTDIR/db --dump_location=$TESTDIR/dump
cmp $DUMPFILE $TESTDIR/dump
back to top