Shiva Profile picture
https://t.co/aQ1DGvQ1Fo .Passionate Tech AI enthusiast & polyglot developer. Co-founder of https://t.co/CUIVlEBXXC, ReaderMonk & Mumbai.rb. Tweets are my own. #buildinpublic
Mar 13, 2023 11 tweets 4 min read
Redis Series Part 4 thread is here!
Today, we're diving into Redis `Hashes`, simple explanations, and real-world example
#redis #series #thread 🧵
If you haven't read the previous thread about the list, check it out
Hash is essentially a collection of field-value pairs, where each field is a unique identifier and each value is the associated data. Just like JSON object or python dictionary. Everything inside the hash is a string.
Mar 12, 2023 12 tweets 4 min read
Redis Part 3 is here! Today, we'll be exploring the power of Redis 'Sets'. #redis #thread 🧵
If you haven't read the previous thread about the list, check it out
Redis Sets are a unique way to store your data! They allow for an unordered collection of strings with no duplicates. Perfect for managing sets of items without worrying about repetition
Mar 11, 2023 12 tweets 4 min read
Today, we will be learning about Redis' second data structure, which is the `list`. #thread 🧵
If you haven't read the first thread, check it out
Image `List`: are like an array but we can use the list as a stack that follows Last-In-First-Out(LIFO) principle and a queue that follows First-In-First-Out (FIFO) principle
Mar 10, 2023 11 tweets 4 min read
Excited to teach Redis core concepts in the next few days! 🧵 #Redis #thread 👇 Image Redis: Open-source, highly-replicated, performant, non-relational, database & caching server. Maps keys to values with the predefined data model. Data stored in-memory data store, It is good for caching, message brokers & streaming engines
Mar 9, 2023 10 tweets 4 min read
Want to level up your Rails skills? Check out this thread on string manipulation tips! 🧵
#rubyonrails #rails CamelCase: It converts the first and second letters of each word to uppercase. Great for words with underscores Image
Apr 5, 2022 11 tweets 3 min read
Super charged Plain Old Ruby Object(PORO) with Active Model. Simple Car class which does not inherit from the active record. Cannot create a new object by with a hash of attributes Image