Crates.io | dbkit-engine |
lib.rs | dbkit-engine |
version | 0.0.9 |
source | src |
created_at | 2016-08-26 04:52:35.494369 |
updated_at | 2016-09-10 13:41:10.799332 |
description | A columnar query execution engine |
homepage | |
repository | https://github.com/mtanski/dbkit |
max_upload_size | |
id | 6121 |
size | 57,238 |
Columnar query processing engine written in Rust. Part of the dbkit suite of Rust libraries. dbkit isn't a standalone database, rather its a group of libaries that provided building blocks to build a database or database like data processing applications.
dbkit can be used to build:
Since the project early in its life and under currently under heavy development and no backwards compatability is provided even in minor versions.
dbkit is inspired by the Supersonic columar query engine by Google. While dbkit draws a lot of inspiration from Supersonic it is not meant to be a strait port from C++ to Rust.
Automatically generated documentation is available from docs.rs
The project requires the Rust language compiler and cargo to build. Currently the project only builds using nightly channel of rust to due to aggressive use of features only present in nightly Rust.
The project makes extensive use unsafe Rust particulary in lower level primatives. I would love PRs that reduce the use of unsafe where its possible without a performance penalty.