Crates.io | rdb |
lib.rs | rdb |
version | 0.2.1 |
source | src |
created_at | 2015-03-23 19:55:58.683984 |
updated_at | 2016-08-03 13:09:20.016199 |
description | Fast and efficient RDB parsing utility |
homepage | http://rdb.fnordig.de/ |
repository | https://github.com/badboy/rdb-rs |
max_upload_size | |
id | 1708 |
size | 551,172 |
Inspired and based on redis-rdb-tools.
Online at rdb.fnordig.de/doc/rdb/.
cargo build --release
Minimum required Rust version: 1.6.0
make install
You can change the path by setting PREFIX
. Defaults to /usr
.
rdb-rs exposes just one important method: parse
.
This methods takes care of reading the RDB from a stream,
parsing the containted data and calling the provided formatter with already-parsed values.
use std::io::BufReader;
use std::fs::File;
use std::path::Path;
let file = File::open(&Path::new("dump.rdb")).unwrap();
let reader = BufReader::new(file);
rdb::parse(reader, rdb::formatter::JSON::new(), rdb::filter::Simple::new());
rdb-rs brings 4 pre-defined formatters, which can be used:
Plain
: Just plain output for testingJSON
: JSON-encoded outputNil
: Surpresses all outputProtocol
: Formats the data in RESP,
the Redis Serialization ProtocolThese formatters adhere to the Formatter
trait and supply a method for each possible datatype or opcode.
Its up to the formatter to correctly handle all provided data such as lists, sets, hashes, expires and metadata.
rdb-rs brings a Command Line application as well.
This application will take a RDB file as input and format it in the specified format (JSON by default).
Example:
$ rdb --format json dump.rdb
[{"key":"value"}]
$ rdb --format protocol dump.rdb
*2
$6
SELECT
$1
0
*3
$3
SET
$3
key
$5
value
Run tests with:
make test
This will run the code tests with cargo as well as checking that it can parse all included dump files.
If you find bugs or want to help otherwise, please open an issue.
MIT. See LICENSE.