1、降低redis内存占用的优点
1、有助于减少创建快照和加载快照所用的时间
2、提升载入aof文件和重写aof文件时的效率
3、缩短从服务器进行同步所需的时间
4、无需添加额外的硬件就可以让redis存贮更多的数据
2、短结构
redis为列表、集合、散列、有序集合提供了一组配置选项,这些选项可以让redis以更节约的方式存储较短的结构。
2.1、ziplist压缩列表(列表、散列、有续集和)
通常情况下使用的存储方式
当列表、散列、有序集合的长度较短或者体积较小的时候,redis将会采用一种名为ziplist的紧凑存储方式来存储这些结构。
ziplist是列表、散列、有序集合这三种不同类型的对象的一种非结构化表示,它会以序列化的方式存储数据,这些序列化的数据每次被读取的时候都需要进行解码,每次写入的时候也要进行编码。
双向列表与压缩列表的区别:
为了了解压缩列表比其他数据结构更加节约内存,我们以列表结构为例进行深入研究。
典型的双向列表
在典型双向列表里面,每个值都都会有一个节点表示。每个节点都会带有指向链表前一个节点和后一个节点的指针,以及一个指向节点包含的字符串值的指针。
每个节点包含的字符串值都会分为三部分进行存储。包括字符串长度、字符串值中剩余可用字节数量、以空字符结尾的字符串本身。
例子:
假若一个某个节点存储了'abc'字符串,在32位的平台下保守估计需要21个字节的额外开销(三个指针+两个int+空字符即:3*4+2*4+1=21)
由例子可知存储一个3字节字符串就需要付出至少21个字节的额外开销。
ziplist
压缩列表是由节点组成的序列,每个节点包含两个长度和一个字符串。第一个长度记录前一个节点的长度(用于对压缩列表从后向前遍历);第二个长度是记录本当前点的长度;被存储的字符串。
例子:
存储字符串'abc',两个长度都可以用1字节来存储,因此所带来的额外开销为2字节(两个长度即1+1=2)
结论:
压缩列表是通过避免存储额外的指针和元数据,从而达到降低额外的开销。
配置:
1
2
3
4
5
6
7
8
9
|
#list
list-max-ziplist-entries 512 #表示允许包含的最大元素数量
list-max-ziplist-value 64 #表示压缩节点允许存储的最大体积
#hash #当超过任一限制后,将不会使用ziplist方式进行存储
hash-max-ziplist-entries 512
hash-max-ziplist-value 64
#zset
zset-max-ziplist-entries 128
zset-max-ziplist-value 64
|
测试list:
1、建立test.php文件
1
2
3
4
5
6
7
8
9
|
#test.php
<?php
$redis = new redis();
$redis ->connect( '192.168.95.11' , '6379' );
for ( $i =0; $i <512 ; $i ++)
{
$redis ->lpush( 'test-list' , $i . '-test-list' ); #往test-list推入512条数据
}
?>
|
此时的test-list中含有512条数据,没有超除配置文件中的限制
2、往test-list中再推入一条数据
此时test-list含有513条数据,大于配置文件中限制的512条,索引将放弃ziplist存储方式,采用其原来的linkedlist存储方式
散列与有序集合同理。
2.2、intset整数集合(集合)
前提条件,集合中包含的所有member都可以被解析为十进制整数。
以有序数组的方式存储集合不仅可以降低内存消耗,还可以提升集合操作的执行速度。
配置:
set-max-intset-entries 512 #限制集合中member个数,超出则不采取intset存储
测试:
建立test.php文件
1
2
3
4
5
6
7
8
9
|
#test.php
<?php
$redis = new redis();
$redis ->connect( '192.168.95.11' , '6379' );
for ( $i =0; $i <512 ; $i ++)
{
$redis ->sadd( 'test-set' , $i ); #给集合test-set插入512个member
}
?>
|
2.3、性能问题
不管列表、散列、有序集合、集合,当超出限制的条件后,就会转换为更为典型的底层结构类型。因为随着紧凑结构的体积不断变大,操作这些结构的速度将会变得越来越慢。
测试:
#将采用list进行代表性测试
测试思路:
1、在默认配置下往test-list推入50000条数据,查看所需时间;接着在使用rpoplpush将test-list数据全部推入到新列表list-new中,查看所需时间
2、修改配置,list-max-ziplist-entries 100000,再执行上面的同样操作
3、对比时间,得出结论
默认配置下测试:
1、插入数据,查看时间
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#test1.php
<?php
header( "content-type: text/html;charset=utf8;" );
$redis = new redis();
$redis ->connect( '192.168.95.11' , '6379' );
$start =time();
for ( $i =0; $i <50000 ; $i ++)
{
$redis ->lpush( 'test-list' , $i . '-aaaassssssddddddkkk' );
}
$end =time();
echo "插入耗时为:" .( $end - $start ). 's' ;
?>
|
结果耗时4秒
2、执行相应命令,查看耗时
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#test2.php
<?php
header( "content-type: text/html;charset=utf8;" );
$redis = new redis();
$redis ->connect( '192.168.95.11' , '6379' );
$start =time();
$num =0;
while ( $redis ->rpoplpush( 'test-list' , 'test-new' ))
{
$num +=1;
}
echo '执行次数为:' . $num . "<br/>" ;
$end =time();
echo "耗时为:" .( $end - $start ). 's' ;
?>
|
更改配置文件下测试
1、先修改配置文件
list-max-ziplist-entries 100000 #将这个值修改大一点,可以更好的凸显对性能的影响
list-max-ziplist-value 64 #此值可不做修改
2、插入数据
执行test1.php
结果为:耗时12s
3、执行相应命令,查看耗时
执行test2.php
结果为:执行次数:50000,耗时12s
结论:
在本机中执行测试50000条数据就相差8s,若在高并发下,长压缩列表和大整数集合将起不到任何的优化,反而使得性能降低。
3、片结构
分片的本质就是基于简单的规则将数据划分为更小的部分,然后根据数据所属的部分来决定将数据发送到哪个位置上。很多数据库使用这种技术来扩展存储空间,并提高自己所能处理的负载量。
结合前面讲到的,我们不难发现分片结构对于redis的重要意义。因此我们需要在配置文件中关于ziplist以及intset的相关配置做出适当的调整。
3.1、分片式散列
#shardhash.class.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
|
<?php
class shardhash
{
private $redis = '' ; #存储redis对象
/**
* @desc 构造函数
*
* @param $host string | redis主机
* @param $port int | 端口
*/
public function __construct( $host , $port =6379)
{
$this ->redis= new redis();
$this ->redis->connect( $host , $port );
}
/**
* @desc 计算某key的分片id
*
* @param $base string | 基础散列
* @param $key string | 要存储到分片散列里的键名
* @param $total int | 预计非数字分片总数
*
* @return string | 返回分片键key
*/
public function shardkey ( $base , $key , $total )
{
if ( is_numeric ( $key ))
{
$shard_id = decbin ( substr ( bindec ( $key ),0,5)); #取 $key 二进制高五位的十进制值
}
else
{
$shard_id =crc32( $key )% $shards ; #求余取模
}
return $base . '_' . $shard_id ;
}
/**
* @desc 分片式散列hset操作
*
* @param $base string | 基础散列
* @param $key string | 要存储到分片散列里的键名
* @param $total int | 预计元素总数
* @param $value string/int | 值
*
* @return bool | 是否hset成功
*/
public function shardhset( $base , $key , $total , $value )
{
$shardkey = $this ->shardkey( $base , $key , $total );
return $this ->redis->hset( $shardkey , $key , $value );
}
/**
* @desc 分片式散列hget操作
*
* @param $base string | 基础散列
* @param $key string | 要存储到分片散列里的键名
* @param $total int | 预计元素总数
*
* @return string/false | 成功返回value
*/
public function shardhget( $base , $key , $total )
{
$shardkey = $this ->shardkey( $base , $key , $total );
return $this ->redis->hget( $shardkey , $key );
}
}
$obj = new shardhash( '192.168.95.11' );
echo $obj ->shardhget( 'hash-' , 'key' ,500);
?>
|
散列分片主要是根据基础键以及散列包含的键计算出分片键id,然后再与基础键拼接成一个完整的分片键。在执行hset与hget以及大部分hash命令时,都需要先将key(field)通过shardkey方法处理,得到分片键才能够进行下一步操作。
3.2、分片式集合
如何构造分片式集合才能够让它更节省内存,性能更加强大呢?主要的思路就是,将集合里面的存储的数据尽量在不改变其原有功能的情况下转换成可以被解析为十进制的数据。根据前面所讲到的,当集合中的所有成员都能够被解析为十进制数据时,将会采用intset存储方式,这不仅能够节省内存,而且还可以提高响应的性能。
例子:
假若要某个大型网站需要存储每一天的唯一用户访问量。那么就可以使用将用户的唯一标识符转化成十进制数字,再存入分片式set中。
#shardset.class.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
|
<?php
class shardset
{
private $redis = '' ; #存储redis对象
/**
* @desc 构造函数
*
* @param $host string | redis主机
* @param $port int | 端口
*/
public function __construct( $host , $port =6379)
{
$this ->redis= new redis();
$this ->redis->connect( $host , $port );
}
/**
* @desc 根据基础键以及散列包含的键计算出分片键
*
* @param $base string | 基础散列
* @param $key string | 要存储到分片散列里的键名
* @param $total int | 预计分片总数
*
* @return string | 返回分片键key
*/
public function shardkey ( $base , $member , $total =512)
{
$shard_id =crc32( $member )% $shards ; #求余取模
return $base . '_' . $shard_id ;
}
/**
* @desc 计算唯一用户日访问量
*
* @param $member int | 用户唯一标识符
*
* @return string | ok表示count加1 false表示用户今天已经访问过不加1
*/
public function count ( $member )
{
$shardkey = $this ->shardkey( 'count' , $member , $total =10); # $totla 调小一点用于测试
$exists = $this ->redis->sismember( $shardkey , $member );
if (! $exists ) #判断member今天是否访问过
{
$this ->redis->sadd( $shardkey , $member );
$this ->redis->incr( 'count' );
$ttl1 = $this ->redis->ttl( 'count' );
if ( $ttl1 ===-1)
$this ->redis->expireat( 'count' , strtotime ( date ( 'y-m-d 23:59:59' ))); #设置过期时间
$ttl2 = $this ->redis->ttl( $shardkey );
if ( $ttl2 ===-1)
{
$this ->redis->expireat( "$shardkey" , strtotime ( date ( 'y-m-d 23:59:59' ))); #设置过期时间
# echo $shardkey ; #测试使用
}
# echo $shardkey ; #测试使用
return 'ok' ;
}
return 'false' ;
}
}
$str = substr (md5(uniqid()), 0, 8); #取出前八位
#将 $str 作为客户的唯一标识符
$str =hexdec( $str ); #将16进制转换为十进制
$obj = new shardset( '192.168.95.11' );
$obj -> count ( $str );
?>
|
4、将信息打包转换成存储字节
结合前面所讲的分片技术,采用string分片结构为大量连续的id用户存储信息。
使用定长字符串,为每一个id分配n个字节进行存储相应的信息。
接下来我们将采用存储用户国家、省份的例子进行讲解:
假若某个用户需要存储中国、广东省这两个信息,采用utf8字符集,那么至少需要消耗5*3=15个字节。如果网站的用户量大的话,这样的做法将会占用很多资源。接下来我们采用的方法每个用户仅仅只需要占用两个字节就可以完成存储信息。
具体思路步骤:
1、首先我们为国家、以及各国家的省份信息建立相应的'信息表格'
2、将'信息表格'建好后,也意味着每个国家,省份都有相应的索引号
3、看到这里大家应该都想到了吧,对就是使用两个索引作为用户存储的信息,不过需要注意的是我们还需要对这两个索引进行相应的处理
4、将索引当做ascii码,将其转换为对应ascii(0~255)所指定的字符
5、使用前面所讲的分片技术,定长分片string结构,将用户的存储位置找出来(redis中一个string不能超过512m)
6、实现信息的写入以及取出(getrange、setrange)
实现代码:
#packbytes.class.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
<?php
#打包存储字节
#存储用户国家、省份信息
class packbytes
{
private $redis = '' ; #存储redis对象
/**
* @desc 构造函数
*
* @param $host string | redis主机
* @param $port int | 端口
*/
public function __construct( $host , $port =6379)
{
$this ->redis= new redis();
$this ->redis->connect( $host , $port );
}
/**
* @desc 处理并缓存国家省份数据
* @param $countries string | 第一类数据,国家字符串
* @param $provinces 二维array | 第二类数据,各国省份数组
* @param $cache 1/0 | 是否使用缓存,默认0不使用
*
* @return array | 返回总数据
*/
public function dealdata( $countries , $provinces , $cache =0)
{
if ( $cache )
{
$result = $this ->redis->get( 'cache_data' );
if ( $result )
return unserialize( $result );
}
$arr = explode ( ' ' , $countries );
$areaarr []= $arr ;
$areaarr []= $provinces ;
$cache_data =serialize( $areaarr );
$this ->redis->set( 'cache_data' , $cache_data );
return $areaarr ;
}
/**
* @desc 将具体信息按表索引转换成编码信息
*
* @param $countries,$provinces,$cache| 参考dealdata方法
* @param $country string | 具体信息--国家
* @param $province string | 具体信息--省份
*
* @return string | 返回转换的编码信息
*/
public function getcode( $countries , $provinces , $country , $province , $cache =0)
{
$dataarr = $this ->dealdata( $countries , $provinces , $cache =0);
$result = array_search ( $country , $dataarr [0]); #查找数组中是否含有data1
if ( $result ===false) #判断是否存在
return chr (0). chr (0); #不存在则返回初始值
$code = chr ( $result );
$result = array_search ( $province , $dataarr [1][ $country ]); #查找数组中是否含有data2
if ( $result ===false)
return $code . chr (0);
return $code . chr ( $result ); #返回对应ascii(0~255)所指定的字符
}
/**
* @desc 计算用户存储编码数据的相关位置信息
*
* @param $userid int | 用户的id
*
* @return array | 返回一个数组 包含数据存储时的分片id、以及属于用户的存储位置(偏移量)
*/
public function saveposition( $userid )
{
$shardsize =pow(2, 3); #每个分片的大小
$position = $userid *2; #user的排位
$arr [ 'shardid' ]= floor ( $position / $shardsize ); #分片id
$arr [ 'offset' ]= $position % $shardsize ; #偏移量
return $arr ;
}
/**
* @desc | 整合方法,将编码信息存入redis中string相应的位置
*
* @param $userid int | 用户id
* @param $countries string | 第一类数据,国家字符串
* @param $provinces 二维array | 第二类数据,各国省份数组
* @param $country string | 具体信息--国家
* @param $province string | 具体信息--省份
* @param $cache 1/0 | 是否使用缓存,默认0不使用
*
* @return 成功返回写入位置/失败false
*/
public function savecode( $userid , $countries , $provinces , $country , $province , $cache =0)
{
$code = $this ->getcode( $countries , $provinces , $country , $province , $cache =0);
$arr = $this ->saveposition( $userid ); #存储相关位置信息
return $this ->redis->setrange( 'save_code_' . $arr [ 'shardid' ], $arr [ 'offset' ], $code );
}
/**
* @desc 获取用户的具体国家与省份信息
*
* @param $userid int | 用户id
*
* @return array | 返回包含国家和省份信息的数组
*/
public function getmessage( $userid )
{
$position = $this ->saveposition( $userid );
$code = $this ->redis->getrange( 'save_code_' . $position [ 'shardid' ], $position [ 'offset' ], $position [ 'offset' ]+1);
$arr = str_split ( $code );
$areaarr = $this ->dealdata( '' , '' , $cache =1); #使用缓存数据
$message [ 'country' ]= $areaarr [0][ord( $arr [0])];
$message [ 'province' ]= $areaarr [1][ $message [ 'country' ]][ord( $arr [1])];
return $message ;
}
}
header( "content-type: text/html;charset=utf8;" );
$countries = "无 中国 日本 越南 朝鲜 俄罗斯 巴基斯坦 美国" ;
$provinces = array (
'无' => array ( '无' ),
'中国' => array ( '无' , '广东' , '湖南' , '湖北' , '广西' , '云南' , '湖南' , '河北' ),
'日本' => array ( '无' , '龟孙子区' , '王八区' , '倭国鬼区' , '鬼子区' , '萝卜头区' ),
);
$obj = new packbytes( '192.168.95.11' );
/*
#数据处理,并将其缓存到redis中
$b=$obj->dealdata($countries,$provinces);
echo "<pre>";
print_r($b);
echo "</pre>";die;
*/
/*
#存储用户国家省份信息
$country='中国';
$province='广东';
$result=$obj->savecode(0,$countries,$provinces,$country,$province);
echo "<pre>";
print_r($result);
echo "</pre>";
*/
/*
#取出用户国家省份信息
$a=$obj->getmessage(15);
echo "<pre>";
print_r($a);
echo "</pre>";die;
*/
?>
|
测试:
1、dealdata处理后的信息,即为'信息表表格'
2、savecode()
userid | 国家 | 省份 |
0 | 中国 | 广东 |
13 | 日本 | 龟孙子区 |
15 | 日本 | 王八区 |
3、getmessage()
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持服务器之家!
原文链接:http://www.cnblogs.com/phpstudy2015-6/p/6601525.html