RBRahul Bhoirincodingpath.hashnode.dev·Jul 11, 2022 · 2 min readNoSQL DatabaseIn any system databases perform a crucial role, right now we distinguish databases on basis of SQL and NoSQL. SQL Databases - SQL or Relational Databases are structured and have a predefined schema. Like database table of users will have informati...00
RBRahul Bhoirincodingpath.hashnode.dev·Jun 16, 2022 · 5 min readBasic of System Design - IIWhat is Load Balancer ? Suppose we have 'n' number of servers and there are multiple request coming from client and we want to distribute these request evenly among these servers at that point "Load Balancer" comes into the picture. Load Balancer si...00
RBRahul Bhoirincodingpath.hashnode.dev·Jun 11, 2022 · 3 min readBasic of System Design - IDefinition: System Design is the process of designing the architecture, components, and interfaces for a system so that it meets the end-user requirements. Characteristics of systems: Scalability Scalability is the capability of a system to upgrad...00
RBRahul Bhoirincodingpath.hashnode.dev·Jan 11, 2022 · 3 min readPass by value and Pass by reference in JSIn this article, we'll look at what is pass by value and pass by reference in JS. Before starting this, In javascript has 5 types that are passed by value: boolean, null, undefined, String, and Number. // Primitives const number= 10; const bool = fa...01O