2013-08-30 2 views

답변

2

보십시오 키 *

http://redis.io/commands/keys

redis> MSET one 1 two 2 three 3 four 4 
OK 
redis> KEYS *o* 
1) "one" 
2) "two" 
3) "four" 
redis> KEYS t?? 
1) "two" 
redis> KEYS * 
1) "one" 
2) "two" 
3) "four" 
4) "three" 
redis> 
+0

당신이 어떻게 모든 값을받을 수 있나요? – algorithmicCoder

관련 문제