Redis源碼環(huán)境構(gòu)建
近日,蔣德鈞新上了一門(mén)Redis源碼剖析的課程,應(yīng)好友沈架構(gòu)師的邀請(qǐng),又重拾起了Redis源碼學(xué)習(xí)。不過(guò)作為正經(jīng)的JAVA工程師,大概在大學(xué)畢業(yè)后再也沒(méi)寫(xiě)過(guò)C語(yǔ)言的源碼了(還是看過(guò)一些的)。搭建一個(gè)Redis閱讀環(huán)境我都好意思寫(xiě)一篇博客記錄一下了。
不過(guò),不是在windows環(huán)境下構(gòu)建了,是在deepin系統(tǒng)下進(jìn)行的構(gòu)建,也許windows用戶可以出門(mén)右拐了。本次搭建環(huán)境主要參考以下兩篇windows搭建環(huán)境的博客:
https://juejin.cn/post/6924329599568445447
https://www.jb51.net/article/218312.htm
C語(yǔ)言環(huán)境
大學(xué)時(shí)期,用過(guò)vc 6.0、 vs 2012等軟件寫(xiě)過(guò)C++語(yǔ)言。也在linux上編譯過(guò)c語(yǔ)言代碼。linux環(huán)境下,自帶有g(shù)cc,make工具。而在windows環(huán)境下,可以選擇MinGW、cygwin提供編譯環(huán)境,make、cmake可以用來(lái)執(zhí)行makefile文件。
不過(guò)呢,我用的是Linux系統(tǒng)嘛,也就沒(méi)有C語(yǔ)言環(huán)境搭建的過(guò)程了。。。
C語(yǔ)言IDE
VC 6.0這樣的老古董應(yīng)該是只適合語(yǔ)言初學(xué)者來(lái)強(qiáng)行記憶自己的語(yǔ)法了吧。vs 2012安裝包很大,在linux環(huán)境上有沒(méi)有安裝包還兩說(shuō)。這里選擇的事jetbrains家族下的Clion。官網(wǎng)有提供安裝包,當(dāng)然,像Deepin提供了應(yīng)用市場(chǎng),也可以直接一鍵安裝。
第一次啟動(dòng)時(shí),CLION就會(huì)讓你選擇C語(yǔ)言環(huán)境的執(zhí)行器,當(dāng)然它默認(rèn)會(huì)掃描到,一路確認(rèn)就行。
克隆源碼
打開(kāi)Clion,選擇 “get from version control”,直接鍵入U(xiǎn)RL:https://github.com/redis/redis.git 進(jìn)行clone。
配置工程
makefile
在工程根目錄,輸入命令make對(duì)makefile進(jìn)行執(zhí)行:
wanglh@dark:~/CLionProjects/redis$ make
cd src make all
make[1]: 進(jìn)入目錄“/home/wanglh/CLionProjects/redis/src”
CC Makefile.dep
CC adlist.o
當(dāng)然,在工程里點(diǎn)擊Makefile 文件,Clion也會(huì)提示你安裝Makefile的插件 Makefile Support。 然后點(diǎn)擊文件右側(cè)綠色的執(zhí)行鍵即可。
之后,就會(huì)在/src目錄中生成許多.o文件。
配置DEBUG命令
在CLion右上角的窗口,點(diǎn)擊Edit Run/Debug Configurations 進(jìn)行如下配置(選擇框進(jìn)行選擇即可):
Target選擇redis-serverExecuteable選擇redis-server
執(zhí)行DEBUG
點(diǎn)擊DEBUG按鈕后,就會(huì)在DEBUG的CONSOLE出輸出:
/home/wanglh/CLionProjects/redis/src/redis-server
19707:C 27 Jul 2021 23:24:49.989 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
19707:C 27 Jul 2021 23:24:49.989 # Redis version=255.255.255, bits=64, commit=17511df5, modified=0, pid=19707, just started
19707:C 27 Jul 2021 23:24:49.989 # Warning: no config file specified, using the default config. In order to specify a config file use /home/wanglh/CLionProjects/redis/src/redis-server /path/to/redis.conf
19707:M 27 Jul 2021 23:24:49.990 * monotonic clock: POSIX clock_gettime
_._
_.-``__ ''-._
_.-`` `. `_. ''-._ Redis 255.255.255 (17511df5/0) 64 bit
.-`` .-```. ```\/ _.,_ ''-._
( ' , .-` | `, ) Running in standalone mode
|`-._`-...-` __...-.``-._|'` _.-'| Port: 6379
| `-._ `._ / _.-' | PID: 19707
`-._ `-._ `-./ _.-' _.-'
|`-._`-._ `-.__.-' _.-'_.-'|
| `-._`-._ _.-'_.-' | https://redis.io
`-._ `-._`-.__.-'_.-' _.-'
|`-._`-._ `-.__.-' _.-'_.-'|
| `-._`-._ _.-'_.-' |
`-._ `-._`-.__.-'_.-' _.-'
`-._ `-.__.-' _.-'
`-._ _.-'
`-.__.-'
19707:M 27 Jul 2021 23:24:49.990 # Server initialized
19707:M 27 Jul 2021 23:24:49.990 # WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect.
19707:M 27 Jul 2021 23:24:49.992 * Loading RDB produced by version 255.255.255
19707:M 27 Jul 2021 23:24:49.992 * RDB age 14593 seconds
19707:M 27 Jul 2021 23:24:49.992 * RDB memory usage when created 0.77 Mb
19707:M 27 Jul 2021 23:24:49.992 * DB loaded from disk: 0.000 seconds
19707:M 27 Jul 2021 23:24:49.992 * Ready to accept connections
這樣就表示啟動(dòng)成功了,我們也可以用redis客戶端,redis-cli進(jìn)行驗(yàn)證:
wanglh@dark:~/CLionProjects/redis/src$ pwd
/home/wanglh/CLionProjects/redis/src
wanglh@dark:~/CLionProjects/redis/src$ ls -l redis-cli
-rwxr-xr-x 1 wanglh wanglh 6689040 7月 27 23:15 redis-cli
wanglh@dark:~/CLionProjects/redis/src$ redis-cli
127.0.0.1:6379> set a nn
OK
127.0.0.1:6379> get a
"nn"
127.0.0.1:6379> ping
PONG
127.0.0.1:6379>
到此這篇關(guān)于Redis源碼環(huán)境構(gòu)建的文章就介紹到這了,更多相關(guān)Redis源碼環(huán)境內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
您可能感興趣的文章:- Redisson分布式鎖源碼解析
- Redis源碼解析:集群手動(dòng)故障轉(zhuǎn)移、從節(jié)點(diǎn)遷移詳解
- Spring AOP實(shí)現(xiàn)Redis緩存數(shù)據(jù)庫(kù)查詢?cè)创a
- Windows環(huán)境部署Redis集群
- Docker + Nodejs + Kafka + Redis + MySQL搭建簡(jiǎn)單秒殺環(huán)境