February 2018
Intermediate to advanced
382 pages
11h 33m
English
The debugging process is quite self-explanatory, and there is no need to memorize all the commands in ldb; the help command in ldb will help.
It's important to know that by forking a process to talk to the debug session, the Redis Server won't get blocked during debugging. Also, this mechanism means all the changes made in debug mode, by default, will be rolled back. Another option, --ldb-sync-mode, will make your server unavailable when you are debugging. So, make sure you really need to do so when you set the debug mode to sync.
We'll discuss Redis logging in detail in the Logging recipe in Chapter 8, Deploying to a Production Environment.
Read now
Unlock full access