Redis (REmote DIctionary Server) ஒரு திறந்த மூல, in-memory data store — இது தரவை RAM இல் வைத்து கொள்ளுகிறது மிக வேகமான அணுகலுக்கு. இது cache, database, message broker, மற்றும் பல விஷயங்களுக்கு பயன்படுத்தப்படுகிறது, அதன் வேகத்திற்கு (sub-millisecond operations) மற்றும் பல்துறை data structures களுக்கு மதிப்பளிக்கப்படுகிறது.
In-memory = மிக வேகமாக
Redis stores data in RAM (memory), not on disk → access is EXTREMELY fast
(sub-millisecond) because RAM is orders of magnitude faster than disk.
→ This speed is Redis's defining characteristic and the reason it's so popular.
(It can persist to disk too, but data primarily lives in memory.)
