restoreの読み方

restoreの読み方

redisで使用される関数の1つである「restore」の読み方を掲載してます。

読み⽅

レストア」と読みます。

英訳

「復元」という意味があります。

restoreとは

redisでは、バックアップしたキーの値を復元することができます。

127.0.0.1:6379> set foo "data"
OK

127.0.0.1:6379> dump foo
"\x00\x04data\t\x00\xb6\xc8f\xdd\xe4\xe1\x90\xf1"

127.0.0.1:6379> restore hoge 0 "\x00\x04data\t\x00\xb6\xc8f\xdd\xe4\xe1\x90\xf1"
OK


127.0.0.1:6379> get hoge
"data"