Storage
Everything on SkillVeris tagged Storage — collected across the glossary, study notes, blog, and cheat sheets.
31 resources across 3 libraries
Study Notes(27)
Isolated Storage in Silverlight
Silverlight's sandboxed per-application, per-site file system for persisting settings, cached data, and small files on the user's machine without full disk acc…
Local Storage and Session Storage
Persist Blazor app state in the browser using localStorage and sessionStorage via JS interop or community libraries.
Authentication and Storage State Reuse
Save and reuse Playwright's storageState to skip repeated UI logins, share auth across projects, and manage multiple user roles.
Snowflake Architecture
A deep dive into Snowflake's three-layer architecture: storage, compute, and cloud services.
Views and Materialized Views
Understand the difference between standard views, secure views, and materialized views in Snowflake, and when to use each.
Local Storage with SQLite
Persist structured data on-device in a MAUI app using sqlite-net-pcl, async CRUD operations, and simple schema migrations.
Token Storage Best Practices
Where and how a client stores access and refresh tokens is often the deciding factor in whether an OAuth 2.0 integration is actually secure in practice.
EEPROM and Persistent Storage
How to store data that survives power loss on Arduino using the built-in EEPROM, plus the wear limits, techniques, and modern alternatives for persisting setti…
Storage, Memory, and Calldata
Solidity keeps data in three places — persistent storage, temporary memory, and read-only calldata — and choosing correctly shapes both gas cost and correctnes…
Erlang and Mnesia
Understand Mnesia, Erlang's built-in distributed database, its table types, transactions, and how it fits into OTP applications.
Working-Storage Section
How the WORKING-STORAGE SECTION declares a COBOL program's in-memory variables, initial values, flags, and constants that persist for the life of the run unit.
Choosing the Right GCP Storage
A decision framework for picking between Cloud Storage, Persistent Disks, and Filestore based on access pattern, cost, and performance needs.
Cloud Storage Basics
An introduction to Google Cloud Storage's object model — buckets, objects, naming, access control, and the durability and consistency guarantees behind it.
Storage Classes in GCP
How to choose between Standard, Nearline, Coldline, and Archive storage classes in Cloud Storage, and how lifecycle rules and Autoclass automate the transition…
Azure Blob Storage
Azure's massively scalable object storage service for unstructured data, covering blob types, access tiers, and security controls.
Azure Storage Account Types
A guide to choosing between general-purpose and premium Azure storage account kinds, and how performance and redundancy tiers interact.
Azure Storage Redundancy Options
A comparison of Azure Storage's LRS, ZRS, GRS, and GZRS redundancy options and how to choose between them.
AWS Quick Reference
A condensed cheat sheet of core AWS compute, storage, networking, database, IAM, and CLI facts for fast lookup and last-minute review.
AWS Storage Gateway Overview
See how AWS Storage Gateway bridges on-premises applications to S3, EBS snapshots, and Glacier using File, Volume, and Tape gateway modes.
S3 Storage Classes
Compare S3's storage classes — from Standard to Glacier Deep Archive — and learn how to pick the right one and automate transitions with lifecycle rules.
Storage Classes
Understand how StorageClass objects define provisioners, parameters, and policies that govern how storage is dynamically created in Kubernetes.
Secure Password Storage
Learn why passwords must never be stored in plaintext or reversible form, and how modern hashing algorithms like bcrypt and Argon2 protect credentials at rest.
Redis Use Cases
A tour of the most common production use cases for Redis: caching, session storage, real-time leaderboards, rate limiting, and pub/sub messaging.
Storage Classes in C
Learn C storage classes — auto, register, static, and extern — covering scope, lifetime, linkage, and exam pitfalls.
Showing 24 of 27.
Cheat Sheets(1)
Interview Questions(3)
What Is a File System?
A file system is the operating system component that organizes how data is named, stored, retrieved, and protected on persistent storage, presenting raw disk b…
What is Back-of-the-Envelope Estimation?
Back-of-the-envelope estimation is the practice of using rough, order-of-magnitude arithmetic (users, QPS, storage, bandwidth) to size a system design before w…
How to Design a Distributed File System
A distributed file system splits large files into fixed-size chunks replicated across many storage nodes, with a separate metadata service tracking which chunk…