(24)
https://qiita.com/witchcraze/items/8085273d644f1b09f581
-- インストール
apt update
apt install -y valkey-server
apt info valkey-server
valkey-cli --version
valkey-server --version
systemctl enable valkey-server
systemctl restart valkey-server
systemctl status valkey-server
-- 動作確認
valkey-cli
ping
set foo bar
get foo
incr mycounter
incr mycounter
(12)
https://github.com/valkey-io/valkey
-- インストール
apt install -y git make gcc tcl
git clone https://github.com/valkey-io/valkey.git
cd valkey
make distclean
make
make test
make install
cd src
./valkey-server
-- 動作確認
valkey-cli
ping
set foo bar
get foo
incr mycounter
incr mycounter
(RL9)
https://github.com/valkey-io/valkey
-- インストール
dnf install -y git make gcc
git clone https://github.com/valkey-io/valkey.git
cd valkey
make distclean
make
make test
make install
cd src
./valkey-server
-- 動作確認
valkey-cli
ping
set foo bar
get foo
incr mycounter
incr mycounter
- Windows Server
(2022)
https://valkey.io/topics/installation/
サポートされていない