Think Throothinkthroo.hashnode.dev·Oct 29, 2024IndexedDB explained.In our previous article, we discussed Dexie, a wrapper for IndexedDB. In this article, we discuss IndexedDB. You must be familiar with this localStorage API, commonly used to store info in the browser. Similarly, IndexedDB is used for client side sto...DiscussJavaScript
ANSH VARUNblog.anshvarun.com·Sep 21, 2024Storage of WebWeb storage provides essential benefits to modern application to store data in browser resulting in improved user experience. Sometimes, internet connections can be unreliable or unavailable, which is why offline functionality and reliable performanc...Discusslocalstorage
Muhammad Abubakarabubakarwebdev.hashnode.dev·Jul 17, 2024How Databases Organize Data on Disks: A Simplified GuideBefore going to the actual database organization part, you first need to understand some prerequisites more clearly. Disk Block: When data is stored on disk-based storage devices, it is stored as blocks of data. You can say a "disk block" is the smal...Discussinternels
Kanishka Chowdhurybits2bytes.hashnode.dev·May 5, 2024Beginner's Guide to IndexedDB: Illustrated with Easy-to-Follow Block DiagramsWhat is IndexedDB? In simple terms, IndexedDB is a client-side storage technique like LocalStorage and SessionStorage. But what sets it apart and makes it far more powerful than the other alternatives is it's: Ability to manage large amounts of stru...Discuss·5 likes·44 readsindexeddb
gunjan agarwalgunjanagarwal.hashnode.dev·Apr 21, 2024Web Storage APIsIn this blog, we explore the Web Storage API provided by modern web browsers. This API allows websites to store data directly within the user's browser. There are three main types of Web Storage APIs: Local Storage: Enables data storage across brows...Discuss·17 likes·30 readsweb storage api
Rishabh Chandelchandel.hashnode.dev·Jan 1, 2024Boosting PostgreSQL Performance with BRIN IndexesIntroduction PostgreSQL, known for its extensibility and robustness, offers a variety of indexing options to optimize query performance. Among these, Block Range INdexes (BRIN) provide a unique approach to indexing large tables with ranges of values....Discuss·12 likes·194 readsBRINvsBTree
Nikblog.xnim.me·Dec 12, 2023FeaturedUnderstanding IndexedDB. The complete guide.Before we start I have been working with IndexedDB for more than 3 years. When I just started, I thought, huh, it's similar to MongoDB, easy-peasy. Quite fast I understood that: The native API is not that easy to use, you need a handy wrapper like D...Aryan Singh and 2 others are discussing this3 people are discussing thisDiscuss·77 likes·6.3K readsindexeddbHey Nik ! While you covered everything about indexedDB and I appreciate the amount of insights I have gained into this tech but, can you pls tell me in what cases shall I use indexedDB for my web app ? 11
Clinttechtruth.dev·May 21, 2023Building Offline-First Web Applications with Service Workers and IndexedDBAbstract: In this article, we will explore the concept of offline-first web applications and delve into the tools and techniques that enable this functionality. Specifically, we will focus on Service Workers and IndexedDB, two powerful technologies t...Discuss·303 readsService Workers
webbureaucratwebbureaucrat.hashnode.dev·May 2, 2023Binding to a JavaScript Function that Returns a Variant in ReScriptReScript provides easy ways to bind to most JavaScript functions in a way that feels both native and safe. Conveniently, it even provides an @unwrap decorator for parametric polymorphism. However, there are a few places where we still have to fill in...Discuss·51 readsJavaScript
Tinz TwinsProtinztwins.hashnode.dev·Apr 9, 2023Understand the Offline Functionality of a PWA (Part 2)A Progressive Web App (PWA) is a web application that has the characteristics of a native app. This article is the second part of a series on PWAs. Please read the first part first so that you have a basic understanding of a PWA. The first part is li...Discuss·10 likesDexie.js