REDIS DATABASE Archive

My Notes Learning Redis Hash

Today we learn about redis Hash, What is it, Command of hash, Redis hashes is map or dictionaries data structure. Each hash in Redis is associated with a key, and the key can be used to access the value, add value, modify value or remove fields. in short the Hashes in redis: Commands In Hash […]

My Notes Learning Redis Simple Data Strings

Redis, renowned for its blazing-fast performance and versatile data structures, offers a myriad of tools for developers to architect robust and scalable applications. At the heart of Redis lies its string data type, a foundational element empowering developers to craft efficient and dynamic solutions. Unleashing Versatility: Redis strings transcend mere text storage, serving as dynamic […]

My Notes Learning Redis Time-To-Live Key of Expiration

Redis can automatically clean data from memory using keyword. we can tell Redis to remove data at seconds, milisecond and epoch time. List Command to Key Expirations Reference : Learning by Doing and Create Notes;

My Notes Learning Redis Structure SET Keywords

SET key value [NX | XX] GET [ EX | PX | EXAT | PXAT | KEEPTTL] Learning by Doing, and Keep the Notes..