OBULIPURUSOTHAMAN Kobulipurusothaman.hashnode.dev·Oct 24, 2024Database IndexesDatabase Indexes :Consider a large Book of 1000 pages.Suppose you’re trying to find the page which contains information related to a certain word.Without an index page, you would have to go through every page, which could take hours or even days.But ...SQL
ATHUL K Sathulks.hashnode.dev·Aug 31, 2024Best Practices for Increasing Performance in MERN Stack ApplicationsThe MERN stack (MongoDB, Express.js, React.js, Node.js) is a powerful framework for building full-stack JavaScript applications. However, as your application scales and user demands increase, optimizing its performance becomes crucial. In this articl...MERN Stack
Nickson K Ropnickyops.hashnode.dev·Jun 28, 2024Making Django Web Application FasterIn a recent project of building an e-commerce web app in Django, some requests were relatively slow when retrieving items from the database, especially when using query filtering. To overcome this challenge, I used database indexes to improve perform...Django
Saiful Alamblog.msar.me·Jun 27, 2024Database Indexing - Why it's matter?Database indexing is crucial in Laravel application development for several reasons: Performance Improvement: Faster Query Execution: Indexes allow the database to find and retrieve specific rows much faster than it could without them. This signifi...1 like·160 readsDatabase Design with LaravelDatabase Improvement
Prakash Tajpuriyaprakash0091.hashnode.dev·May 21, 2024Understanding Database Indexing and How to Implement it in DjangoIn the context of databases, speed and efficiency are essential. Indexing is one of the main strategies used to improve database query performance. We'll explore database indexing in this blog post, including what it is, why it matters, and how to us...204 readsdatabase indexing