SSSubham Sanghaiincodeminion.hashnode.dev·Apr 23, 2022 · 3 min readProxy & Reverse ProxyIn our day to day life, we hear this term proxy a lot. So, let's try to understand the actual definition and need of using a proxy. Proxy As per english dictionary, a proxy is an agency, individual who acts as a substitute for another or it is someo...00
SSSubham Sanghaiincodeminion.hashnode.dev·Apr 17, 2022 · 5 min readSQL vs NoSQLIntroduction Database is a component required to persist data. In the world of databases, there are two main types of solutions: SQL(relational) and NoSQL(non-relational) databases. SQL SQL stands for structured query language. As the names suggests...00
SSSubham Sanghaiincodeminion.hashnode.dev·Apr 15, 2022 · 6 min readUnderstanding Docker, Containers and KubernetesVirtualisation and Containers are the talk of the town which fit into our modern cloud native way of building applications. Lets break down all the jargons around the same and understand them one by one. Virtualisation Virtualization is the process ...00
SSSubham Sanghaiincodeminion.hashnode.dev·Apr 14, 2022 · 4 min readDatabase LockingIntroduction Locking protocols are used in database management systems as a means of concurrency control. When many people attempt to modify data in a database at the same time, a system of controls must be implemented so that modifications made by ...01C
SSSubham Sanghaiincodeminion.hashnode.dev·Apr 10, 2022 · 5 min readHow does BookMyShow handle concurrent bookingsIntroduction Book my show is a ticket booking application which helps users in booking single/multiple seats for a movie/show/event etc. in a particular geographical location. It is possible that multiple users try to book the same show and sometime ...03NSJ