KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
rdb-go
★ 22
Open GitHub ↗
Parse Redis RDB dump files.
Download README (.md)
Explore Similar Repositories
africa_poverty_clean
:
No description available.
dumble
:
A Mumble transport client framework supporting multiple Mumble features such as fully encrypted udp transport or user management
flutterban
:
A Kanban board built in Flutter
alarmbuddy
:
No description available.
ixm
:
Izzy's eXtension Modules for CMake
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
rdb-go
?
Download (.md)
# rdb-go Parse Redis RDB dump files. This library is based on [redis-rdb-tools](https://github.com/sripathikrishnan/redis-rdb-tools). [](https://github.com/tommy351/rdb-go/releases) [](https://pkg.go.dev/github.com/tommy351/rdb-go)  [](https://codecov.io/gh/tommy351/rdb-go) ## Install This library can be used as a package. ```sh go get github.com/tommy351/rdb-go ``` Or as a command line tool. ```sh go get github.com/tommy351/rdb-go/cmd/rdb rdb path/to/dump.rdb ``` ## Usage Use `Parser` to iterate over a RDB dump file. ```go import ( rdb "github.com/tommy351/rdb-go" ) parser := NewParser(file) for { data, err := parser.Next() if err == io.EOF { break } if err != nil { panic(err) } // ... } ``` See examples in the [documentation](https://pkg.go.dev/github.com/tommy351/rdb-go) or [cmd/rdb/main.go](cmd/rdb/main.go) for more details. ## License MIT