-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexport.php
91 lines (75 loc) · 1.98 KB
/
export.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?php
/* 这里替换为连接的实例host和port */
$host = "127.0.0.1";
$port = 6379;
/* 这里替换为实例id和实例password,没有则注释掉 */
/*$user = "xxxxxxxxxxxxxxxxxxxx";
$pwd = "xxxxxxx";*/
$Redis = new redis();
//$Redis->pconnect('127.0.0.1', 6379);
if ($Redis->pconnect($host, $port) == false) {
die($Redis->getLastError());
}
//如果没有账户密码,就注释掉
/*if ($Redis->auth($user . ":" . $pwd) == false) {
die($Redis->getLastError());
}*/
file_put_contents('./redis.json', '');
$it = NULL; /* Initialize our iterator to NULL */
$Redis->setOption(Redis::OPT_SCAN, Redis::SCAN_RETRY); /* retry when we get no keys back */
while($keys = $Redis->scan($it)) {
$out = '';
foreach($keys as $key) {
//echo $Redis->type($key),"\n";
$arr = array();
$type = $Redis->type($key);
$expire = $Redis->ttl($key);
switch ($type) {
case $Redis::REDIS_STRING:
//echo "string\n";
$arr['expire'] = $expire;
$arr['type'] = $type;
$arr['key'] = $key;
$arr['val'] = $Redis->get($key);
break;
case $Redis::REDIS_HASH:
//echo "hash\n";
$arr['expire'] = $expire;
$arr['type'] = $type;
$arr['key'] = $key;
$arr['val'] = $Redis->hGetAll($key);
break;
case $Redis::REDIS_LIST:
//echo "list\n";
$arr['expire'] = $expire;
$arr['type'] = $type;
$arr['key'] = $key;
$arr['val'] = $Redis->lRange($key, 0, -1);
break;
case $Redis::REDIS_SET:
//echo "set\n";
$arr['expire'] = $expire;
$arr['type'] = $type;
$arr['key'] = $key;
$arr['val'] = $Redis->sMembers($key);
break;
case $Redis::REDIS_ZSET:
//echo "zset\n";zRange('key1', 0, -1, true);
$arr['expire'] = $expire;
$arr['type'] = $type;
$arr['key'] = $key;
$arr['val'] = $Redis->zRange($key, 0, -1, true);
break;
default:
//echo "unknown\n";
continue;
break;
}
$out .= json_encode($arr)."\n";
}
file_put_contents('./redis.json', $out,FILE_APPEND);
}
/*$keys = $Redis->keys('*');
$out = '';*/
//echo $out;
$Redis->close();