Redis源碼環境構建過程詳解

Redis源碼環境構建

​ 近日,蔣德鈞新上瞭一門Redis源碼剖析的課程,應好友沈架構師的邀請,又重拾起瞭Redis源碼學習。不過作為正經的JAVA工程師,大概在大學畢業後再也沒寫過C語言的源碼瞭(還是看過一些的)。搭建一個Redis閱讀環境我都好意思寫一篇博客記錄一下瞭。

​ 不過,不是在windows環境下構建瞭,是在deepin系統下進行的構建,也許windows用戶可以出門右拐瞭。本次搭建環境主要參考以下兩篇windows搭建環境的博客:

https://juejin.cn/post/6924329599568445447

https://www.jb51.net/article/218312.htm

C語言環境

​ 大學時期,用過vc 6.0、 vs 2012等軟件寫過C++語言。也在linux上編譯過c語言代碼。linux環境下,自帶有gcc,make工具。而在windows環境下,可以選擇MinGW、cygwin提供編譯環境,make、cmake可以用來執行makefile文件。

​ 不過呢,我用的是Linux系統嘛,也就沒有C語言環境搭建的過程瞭。。。

C語言IDE

​ VC 6.0這樣的老古董應該是隻適合語言初學者來強行記憶自己的語法瞭吧。vs 2012安裝包很大,在linux環境上有沒有安裝包還兩說。這裡選擇的事jetbrains傢族下的Clion。官網有提供安裝包,當然,像Deepin提供瞭應用市場,也可以直接一鍵安裝。

​ 第一次啟動時,CLION就會讓你選擇C語言環境的執行器,當然它默認會掃描到,一路確認就行。

克隆源碼

​ 打開Clion,選擇 “get from version control”,直接鍵入URL:https://github.com/redis/redis.git 進行clone。

配置工程

makefile

在工程根目錄,輸入命令make對makefile進行執行:

wanglh@dark:~/CLionProjects/redis$ make
cd src && make all
make[1]: 進入目錄“/home/wanglh/CLionProjects/redis/src”
    CC Makefile.dep
    CC adlist.o

當然,在工程裡點擊Makefile 文件,Clion也會提示你安裝Makefile的插件 Makefile Support。 然後點擊文件右側綠色的執行鍵即可。

之後,就會在/src目錄中生成許多.o文件。

配置DEBUG命令

在CLion右上角的窗口,點擊Edit Run/Debug Configurations 進行如下配置(選擇框進行選擇即可):

在這裡插入圖片描述

Target選擇redis-serverExecuteable選擇redis-server

執行DEBUG

點擊DEBUG按鈕後,就會在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

這樣就表示啟動成功瞭,我們也可以用redis客戶端,redis-cli進行驗證:

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> 

到此這篇關於Redis源碼環境構建的文章就介紹到這瞭,更多相關Redis源碼環境內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: