Este site funciona melhor com JavaScript.
Página inicial
Explorar
Ajuda
Acessar
bubblev
/
bubble
Observar
9
Favorito
0
Fork
0
Código
Issues
0
Pull requests
0
Versões
130
Wiki
Atividade
Ver código fonte
add rkeys and rdelkeys scripts
tags/v0.12.2
Jonathan Cobb
4 anos atrás
pai
e8ab421e41
commit
2307003210
3 arquivos alterados
com
13 adições
e
1 exclusões
Visão dividida
Opções de diferenças
Mostrar estatísticas
Baixar arquivo de patch
Baixar arquivo de diferenças
+5
-0
bin/rdelkeys
+5
-0
bin/rkeys
+3
-1
bubble-server/src/main/resources/ansible/bubble_scripts.txt
+ 5
- 0
bin/rdelkeys
Ver arquivo
@@ -0,0 +1,5 @@
#!/bin/bash
PREFIX="${1:?no prefix}"
for k in $(echo 'keys '"""${PREFIX}"""'*' | redis-cli ) ; do
echo "del ${k} => $(echo "del ${k}" | redis-cli)"
done
+ 5
- 0
bin/rkeys
Ver arquivo
@@ -0,0 +1,5 @@
#!/bin/bash
PREFIX="${1}"
for k in $(echo 'keys '"""${PREFIX}"""'*' | redis-cli ) ; do
echo "$k => $(echo "get $k" | redis-cli)"
done
+ 3
- 1
bubble-server/src/main/resources/ansible/bubble_scripts.txt
Ver arquivo
@@ -15,4 +15,6 @@ bencrypt
bdecrypt
list_bubble_databases
cleanup_bubble_databases
install_packer.sh
install_packer.sh
rkeys
rdelkeys
Escrever
Pré-visualização
Carregando…
Cancelar
Salvar