简介
最近在学习 Redis 源码,主要是目前负责华为产品 FusionInsight HD 中 Redis 组件的相关事务,不得不学习 Redis 源码。本文主要讲述的是怎么通过 vscode 查看 Redis 的源码(Linux 平台下面).
配置
在项目下面增加文件夹 .vscode
,并且新建文件:launch.json
、tasks.json
、 c_cpp_properties.json
,并且在文件中添加下面内容:
launch.json:
{
"version": "0.2.0",
"configurations": [
{
"name": "build",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/src/redis-server",
"args": [
"redis.conf"
],
"stopAtEntry": true,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"preLaunchTask": "shell"
}
]
}
tasks.json:
{
"version": "2.0.0",
"tasks": [
{
"label": "shell",
"type": "shell",
"command": "/usr/bin/make"
}
]
}
c_cpp_properties.json
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [],
"compilerPath": "/usr/bin/clang",
"cStandard": "c11",
"cppStandard": "c++14",
"intelliSenseMode": "clang-x64"
}
],
"version": 4
}
运行
使用快捷键 F5 进行编译调试。
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于