Databases

Databases

SQL Cursor: Row-by-Row Processing

SQL cursors are database objects that allow you to traverse and manipulate result sets one row at a time. They fundamentally contradict SQL’s set-based nature, which is designed to operate on entire…

Read more →
Databases

Redis Persistence: RDB and AOF

Redis is fundamentally an in-memory database, which makes it blazingly fast. But memory is volatile—when your Redis server restarts, everything vanishes unless you’ve configured persistence. This…

Read more →