Nov 8GDB Advanced Techniques: Expanding GDB Functionality with Custom Function ExecutionGDB is the go-to tool for debugging and troubleshooting low-level applications such as C++. Sometimes all you need simple break at some specific point and print a variable to inspect its value. Other times you need to go even further and loop through some memory structure such as a list. …MySQL4 min readMySQL4 min read
Oct 9MySQL Query Cache with ReadySetCache is a known strategy for speeding up data access by saving result-sets in memory for later usage. When the same data is needed, the results are accessed directly from memory. Caching comes with a maintenance cost. …MySQL4 min readMySQL4 min read