In-Depth PHP Debugging with GDB

In-Depth PHP Debugging with GDB

Author: bobyzhang, Tencent IEG Operations Development Engineer There is a debug mode when compiling PHP, which disables memory optimization, alerts for memory leaks, and disables call stack optimization to allow us to see the complete PHP C-level call stack. Typically, I compile two versions of PHP (one normal and one with debug) in different directories, … Read more

Using TinkerPop Framework for CRUD Operations on GDB

Using TinkerPop Framework for CRUD Operations on GDB

This article introduces the points to note when using GDB as storage in server-side development. It implements several common examples using the TinkerPop framework, showcasing the important aspects of CRUD operations on GDB and the differences between two methods of submitting GDB operations. Introduction As one of the more well-known and general-purpose graph database server … Read more

A Simple Guide to Using GDB Debugger

A Simple Guide to Using GDB Debugger

Original: https://blog.csdn.net/fangye945a/article/details/85254627 When developing C/C++ projects on the ARM and Linux platforms, you will inevitably encounter some bugs in your programs. Small projects are manageable, but for large projects with extensive code, it becomes challenging to pinpoint issues. This is where using the gdb debugger can help you easily locate code bugs. Previously, I shared … Read more

Best Practices of Alibaba Group’s Graph Database GDB

Best Practices of Alibaba Group's Graph Database GDB

Guest Speaker: Dou Chao, Alibaba Technical Expert Editor: Wang Shuai, Kingsoft Cloud Produced by: DataFunTalk Introduction:The Alibaba Cloud Graph Database (Graph Database, GDB) is a self-developed, real-time, reliable online graph database service supporting the Property Graph model for handling highly connected data queries and storage.GDB is the only graph database product in China to enter … Read more

CGDB: A More Convenient Debugging Tool Than GDB

CGDB: A More Convenient Debugging Tool Than GDB

Table of Contents Example Code with Bugs GDB Debugging Operations CGDB Debugging Operations Learning from Others’ Experiences! CGDB is a frontend for GDB, providing a graphical interface in the terminal for debugging code (based on ncurse), which is very convenient. Compared to GDB, it can significantly improve efficiency. This article will share the most basic … Read more

Using GDB to Inspect Program Stack Space

Using GDB to Inspect Program Stack Space

Introduction: This is a quick tutorial on how to use GDB to inspect the stack space of a C program. Word count: 7403, estimated reading time: 10 minutes https://linux.cn/article-13550-1.htmlAuthor: Julia EvansTranslator: amwps290 Yesterday, while chatting with some people, they mentioned that they didn’t really understand how the stack works and didn’t know how to inspect … Read more

5 Lesser-Known GDB Debugger Tips

5 Lesser-Known GDB Debugger Tips

Learn how to use some lesser-known features of gdb to inspect and fix your code. — Tim Waugh GNU Debugger (gdb) is a valuable tool for inspecting running processes and troubleshooting while developing programs. You can set breakpoints at specific locations (by function name, line number, etc.), enable and disable these breakpoints, display and change … Read more

Common GDB Commands Overview

Common GDB Commands Overview

(Click the public account above to quickly follow) English: Fsf, Translation: Linux China/robot527 linux.cn/article-8900-1.html If you have good articles to submit, please click → here for details Table of Contents break — Set a breakpoint at the specified line or function, abbreviated as b info breakpoints — Print a list of all non-deleted breakpoints, watchpoints, … Read more