当前位置:网站首页>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.
边栏推荐
- Insert sort, select sort, bubble sort
- SPSS installation and activation tutorial (including network disk link)
- Attack and defense world misc advanced area ditf
- The overview and definition of clusters can be seen at a glance
- 【lua】int64的支持
- Erik baleog and Olaf, advanced area of misc in the attack and defense world
- Naacl-22 | introduce the setting of migration learning on the prompt based text generation task
- Unity Xiuxian mobile game | Lua dynamic sliding function (specific implementation of three source codes)
- 攻防世界 MISC 进阶区 3-11
- leetcode 72. Edit distance edit distance (medium)
猜你喜欢
Google Earth engine (GEE) - tasks upgrade enables run all to download all images in task types with one click
Wake up day, how do I step by step towards the road of software testing
攻防世界 MISC 进阶区 Ditf
The overview and definition of clusters can be seen at a glance
2022-07-04: what is the output of the following go language code? A:true; B:false; C: Compilation error. package main import “fmt“ func main() { fmt.Pri
Unity Xiuxian mobile game | Lua dynamic sliding function (specific implementation of three source codes)
蓝队攻防演练中的三段作战
Redis démarrer le tutoriel complet: Pipeline
攻防世界 MISC 进阶区 3-11
MYSQL架构——逻辑架构
随机推荐
攻防世界 misc 高手进阶区 a_good_idea
Three stage operations in the attack and defense drill of the blue team
Redis入门完整教程:发布订阅
Unity-VScode-Emmylua配置报错解决
[try to hack] wide byte injection
堆排序代码详解
Google Earth Engine(GEE)——Tasks升级,实现RUN ALL可以一键下载任务类型中的所有影像
Unity vscode emmylua configuration error resolution
共创软硬件协同生态:Graphcore IPU与百度飞桨的“联合提交”亮相MLPerf
Attack and defense world misc advanced area Hong
测试必会:BUG的分类及推进解决
Wake up day, how do I step by step towards the road of software testing
关于栈区、堆区、全局区、文字常量区、程序代码区
Google Earth Engine(GEE)——以MODIS/006/MCD19A2为例批量下载逐天AOD数据逐天的均值、最大值、最小值、标准差、方差统计分析和CSV下载(北京市各区为例)
Install the gold warehouse database of NPC
2022-07-04: what is the output of the following go language code? A:true; B:false; C: Compilation error. package main import “fmt“ func main() { fmt.Pri
Introducing QA into the software development lifecycle is the best practice that engineers should follow
leetcode 72. Edit distance edit distance (medium)
In Linux, I call odspcmd to query the database information. How to output silently is to only output values. Don't do this
Redis入门完整教程:客户端通信协议