1 مستودع
Mechanisms for loading remote database files into a local engine by fetching specific byte ranges.
Distinct from SQLite Databases: Distinct from the database engine itself: focuses on the transport and retrieval mechanism of the file segments.
Explore 1 awesome GitHub repository matching data & databases · Remote Database Loaders. Refine with filters or upvote what's useful.
sql.js-httpvfs is a virtual file system and loader designed to execute SQL queries against read-only SQLite databases hosted on remote static file servers. It enables the retrieval of database files over HTTP without requiring the entire file to be downloaded to the client. The project distinguishes itself by using byte-range HTTP fetching to simulate local random-access reads. It includes a chunking tool that splits large databases into smaller pieces via a JSON configuration, which helps bypass file size limits and optimizes caching. The system covers a range of capabilities including remo
Fetches specific byte ranges of a remote SQLite database to simulate local random-access reads.