Redis Command: HGET

Get the value of a single field of a hash. This is the simplest command for getting the value from a hash, but only one field can be fetched from the hash. HMGET supports multiple fields, and HGETALL returns all data of a hash. So you can use these if these commands serve your purpose.

JavaScript: Event Capturing and Bubbling [event propagation in detail]

If you are designing some event-heavy component using JavaScript, then the propagation of the event becomes very critical. Any event like “click”, “hover” etc. has 2 ways of traveling through the components. To understand the capturing and bubbling, we need to understand the params of “addEventListener” method of EventTarget. Here is the signature of “addEventListener”.

Redis: Backup and Restore [ full DB and single key ]

Here are the processes to backup and restore data from and to the Redis server. Though the restore and back is not a frequently used process, but this becomes crucial in certain use cases. Also moving data from one Redis server to another is a very handy process when we need that. Here we have discussed 2 processes for the backup and restoration of the Redis server.