ASAkhil Sharmainakh1l.hashnode.dev·Nov 3, 2025 · 1 min readTrigger a function in AWS Lambda on uploading a fileLog in to your AWS account and on the dashboard, search for Lambda Click on Lambda, and you will land on the Lambda dashboard. Click on “Create a function”. Choose a function name, select a runtime that you are comfortable with. Leave everythin...00
ASAkhil Sharmainakh1l.hashnode.dev·Nov 11, 2024 · 2 min readCAP TheoremWhat does CAP stand for? C - Consistency Consistency in Database means it goes from one consistent state to another, but in CAP, it means you get the latest written value as the response. A - Availability Availability - Every request receives a resp...00
ASAkhil Sharmainakh1l.hashnode.dev·Jun 22, 2023 · 1 min readWrite-Ahead LogWhen we read about Databases, we come across ACID properties and how the databases make sure the data stays consistent and durable even when a system fails in between a transaction or right after a transaction. But how does the database make sure tha...00
ASAkhil Sharmainakh1l.hashnode.dev·Feb 26, 2023 · 2 min readStateful vs Stateless Web TierIn this article, I will try to state what stateful and stateless web tiers are and how they are different. When the user types a domain name then the request is sent to the Domain name system(DNS) which returns the associated IP address to the user t...00
ASAkhil Sharmainakh1l.hashnode.dev·Feb 14, 2023 · 2 min readHow Python Code is Executed?We need a way to interact with machines to tell them to perform certain tasks but the CPU only understands Binary language. It is tough for humans to write code in Binary language and that’s why we have so many programming languages. They help us in ...00