UAUjjwal Agarwalinguidetodevelopment.hashnode.dev·12h ago · 7 min readWhat Actually Happens Inside PostgreSQL When You UPDATE a Row? Most developers think of a PostgreSQL table like this: users ---------------- id | age ---------------- 1 | 25 2 | 31 3 | 42 Then we run: UPDATE users SET age = 30 WHERE id = 1; The obvious menta00
UAUjjwal Agarwalinguidetodevelopment.hashnode.dev·Aug 9 · 7 min readWhy Traditional Search BreaksWhy modern search is no longer just about matching words or finding similar vectors. Introduction If you've used apps like Zomato, Swiggy, or Uber Eats, you've probably noticed that search has become00
UAUjjwal Agarwalinguidetodevelopment.hashnode.dev·Oct 28, 2023 · 3 min readA quick guide to useState HookHooks are the feature of React that allows you to change the state of the component without writing class i.e. with Hooks, it is possible to change the state in the functional component. Hooks are mainly used with Functional Components in React.js In...00