A command-line tool to make developing with FoundationDB easier with protobufs.
N/A
fdb-cli [command]
fdb-cli [command] helpfdb-cli setup --cluster-file /etc/foundationdb/fdb.cluster
# for protobuf support
fdb-cli setup --proto-file $HOME/project/protos/my_messages.protofdb-cli get key users/259e748b-b9c6-48de-b366-24d2af598e63fdb-cli get key -p protos.User users/259e748b-b9c6-48de-b366-24d2af598e63fdb-cli get range --start users/100 --end users/500fdb-cli get range -p protos.User --start users/100 --end users/500fdb-cli delete key users/259e748b-b9c6-48de-b366-24d2af598e63fdb-cli delete range --start users/100 --end users/500fdb-cli resetWIP