当前位置:网站首页>Complete tutorial for getting started with redis: bitmaps

Complete tutorial for getting started with redis: bitmaps

2022-07-04 22:53:00 Gu Ge academic

3.5.1  Data structure model
Modern computers use binary ( position ) As the basic unit of information ,1 Bytes are equal to 8 position , example
Such as “big” Strings are created by 3 Byte composition , But it is actually stored in a binary table
in ,“big” Respectively corresponding ASCII The codes are 98、105、103, The corresponding binaries are
01100010、01101001 and 01100111, Pictured 3-9 Shown .

Many development languages provide the function of operation bits , Reasonable use of bits can effectively improve internal
Storage utilization and development efficiency .Redis Provides Bitmaps This “ data structure ” Can realize alignment
operation . The data structure is quoted mainly because :
·Bitmaps It's not a data structure in itself , It's actually a string ( Pictured 3-10 the
in ), But it can operate on the bits of a string .
·Bitmaps A separate set of commands is provided , So in Redis Use in Bitmaps And use characters
The method of string is different . You can put Bitmaps Think of it as an array of bits , Array of
Each unit can only store 0 and 1, The subscript of the array is in Bitmaps It's called offset .

3.5.2  command
This section stores whether each individual user has visited the website in Bitmaps in , Users to be accessed
Remember to do 1, Do not visit users remember to do 0, Use offset as user's id.
1. Set the value
setbit key offset value
Set the number of the key offset The value of a bit ( from 0 Count up ), Suppose there are now 20 Users ,
userid=0,5,11,15,19 's users visited the site , Then the current Bitmaps initial
The result is shown in the figure 3-11 Shown .

  The specific operation process is as follows ,unique:users:2016-04-05 representative 2016-04-05 On this day
Independent access to the user's Bitmaps:

127.0.0.1:6379> setbit unique:users:2016-04-05 0 1
(integer) 0
127.0.0.1:6379> setbit unique:users:2016-04-05 5 1
(integer) 0
127.0.0.1:6379> setbit unique:users:2016-04-05 11 1
(integer) 0
127.0.0.1:6379> setbit unique:users:2016-04-05 15 1
(integer) 0
127.0.0.1:6379> setbit unique:users:2016-04-05 19 1

If there is a userid=50 's users visited the website , that Bitmaps The structure of becomes
Figure 3-12, The first 20 position ~49 All places are 0.

Users of many applications id With a specified number ( for example 10000) start , Direct users id
and Bitmaps A certain amount of offset is bound to cause waste , The usual practice is to do it every time setbit
The user will be id Subtract the specified number . At first initialization Bitmaps when , If offset
It's very large , Then the whole initialization process will be slow , It may cause Redis The block .
2. Get value
gitbit key offset
Get the second offset The value of a ( from 0 Start counting ), The following operation gets id=8 Is the user of
stay 2016-04-05 I visited , return 0 I haven't visited :
127.0.0.1:6379> getbit unique:users:2016-04-05 8
(integer) 0
because offset=1000000 It doesn't exist at all , So the return result is 0:
127.0.0.1:6379> getbit unique:users:2016-04-05 1000000
(integer) 0
3. obtain Bitmaps The specified range value is 1 The number of

bitcount [start][end]
The following operation calculates 2016-04-05 The number of independent users that day :
127.0.0.1:6379> bitcount unique:users:2016-04-05
(integer) 5
[start] and [end] Represents the number of start and end bytes , The following operation calculates the user id In the 1 Bytes
To the first 3 Number of independent access users between bytes , The corresponding user id yes 11,15,19.
127.0.0.1:6379> bitcount unique:users:2016-04-05 1 3
(integer) 3
4.Bitmaps Operation between
bitop op destkey key[key....]
bitop It's a composite operation , It can do more than one Bitmaps Of and( intersection )、or( and
Set )、not( Not )、xor( Exclusive or ) Operate and save the result in destkey in . hypothesis 2016-
04-04 Visit the website userid=1,2,5,9, Pictured 3-13 Shown .

The following operation calculates 2016-04-04 and 2016-04-03 The number of users who have visited the website in two days

The amount , Pictured 3-14 Shown .
127.0.0.1:6379> bitop and unique:users:and:2016-04-04_03 unique: users:2016-04-03
unique:users:2016-04-03
(integer) 2
127.0.0.1:6379> bitcount unique:users:and:2016-04-04_03
(integer) 2
If you want to figure it out 2016-04-04 and 2016-04-03 The number of users who have visited the site on any given day
( For example, the active moon is like this ), have access to or Union , The specific command is as follows :
127.0.0.1:6379> bitop or unique:users:or:2016-04-04_03 unique:
users:2016-04-03 unique:users:2016-04-03
(integer) 2
127.0.0.1:6379> bitcount unique:users:or:2016-04-04_03
(integer) 6 

5. Calculation Bitmaps The first value in is targetBit The offset
bitpos key targetBit [start] [end]

The following operation calculates 2016-04-04 The smallest user currently visiting the website id:
127.0.0.1:6379> bitpos unique:users:2016-04-04 1
(integer) 1
besides ,bitops There are two options [start] and [end], Represents the start byte and end word respectively
section , For example, calculate the number of 0 Byte to byte 1 Between bytes , The first value is 0 The offset , From the picture 3-
13 We can know that the result is id=0 Users of .
127.0.0.1:6379> bitpos unique:users:2016-04-04 0 0 1
(integer) 0

3.5.3 Bitmaps analysis
Suppose the website has 1 Billion users , The users who visit independently every day are 5 Ten million , If you use collection classes every day
The type and Bitmaps Store active users separately and get tables 3-3.

Obviously , Use... In this case Bitmaps Can save a lot of memory space , Especially with
The memory saved over time is still very considerable , See table 3-4.

but Bitmaps It's not a panacea , If the website has few independent visitors every day , for example
Only 10 ten thousand ( A lot of zombie users ), Then the comparison between the two is shown in the table 3-5 Shown , Obviously , this
When using Bitmaps Not really , Because most of the bits are 0.

原网站

版权声明
本文为[Gu Ge academic]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/185/202207042229263458.html