Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 1.61 KB

File metadata and controls

38 lines (28 loc) · 1.61 KB

Storage & Engine Guide

How SharpCoreDB stores, encrypts, and persists data — modes, engines, single-file format, and metadata. Deep dives below.


Storage modes

Mode When to use Docs
Directory mode (default) OLTP with many tables; per-record encryption; debuggability this page
Single-file .scdb Portable / app-store scenarios; one encrypted file SINGLE_FILE_SQL_LIMITATIONS.md
Columnar storage Analytics / SIMD aggregates ../analytics/README.md

Engine modes

Engine Best for Docs
Append-only Bulk ingestion, append-heavy writes STORAGE_MODE_GUIDANCE.md
Page-based OLTP with many in-place updates STORAGE_MODE_GUIDANCE.md

Topics

Manual

See the Database Core chapter of the v2.0 manual for API-level guidance, transactions & WAL, and AES-256-GCM encryption.