1 Repo
Reducing overhead in the read path by eliminating complex buffer mapping and atomic operations.
Distinct from Read Performance Optimizations: Focuses on the internal memory-to-storage mapping efficiency, not external caching like Bloom filters.
Explore 1 awesome GitHub repository matching data & databases · Buffer Mapping Optimizations. Refine with filters or upvote what's useful.
Orioledb is a cloud-native storage engine for PostgreSQL designed to replace the default storage layer to improve vertical scalability and performance on modern hardware. It functions as an index-organized table store, organizing table rows directly within the primary index to accelerate data retrieval. The engine utilizes an undo log storage system to manage data versioning, which eliminates the need for manual vacuuming and prevents table bloat. It further reduces the disk footprint through block-level and page-level data compression. The project provides capabilities for advanced index ma
Improves read throughput on high-core servers by removing buffer mapping and atomic operations during in-memory reads.