Skip to content

Commit

Permalink
update storage engine version
Browse files Browse the repository at this point in the history
  • Loading branch information
marvin-j97 committed Jan 25, 2024
1 parent 72fac6f commit 74ec17b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

[![CI](https://github.com/marvin-j97/smoltable/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/marvin-j97/smoltable/actions/workflows/test.yml)

Smoltable is a tiny wide-column store heavily inspired by [Google Bigtable](https://static.googleusercontent.com/media/research.google.com/de//archive/bigtable-osdi06.pdf). It is implemented in Rust and is based on a [custom-written LSM storage engine](https://github.com/marvin-j97/fjall), also written in Rust. It can be accessed through a JSON REST API, with potential plans for future embeddability.
Smoltable is a tiny wide-column store heavily inspired by [Google Bigtable](https://static.googleusercontent.com/media/research.google.com/de//archive/bigtable-osdi06.pdf). It is implemented in Rust and is based on a [custom-written LSM storage engine](https://github.com/fjall-rs/fjall), also written in Rust. It can be accessed through a JSON REST API, with potential plans for future embeddability.

## Data model

Expand Down
2 changes: 1 addition & 1 deletion server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.111"

# NOTE: Don't need bloom filters, because we always do prefix queries for pretty much everything
fjall = { version = "0.6.0" }
fjall = { version = "0.6.1" }
smoltable = { path = "../smoltable" }

fs_extra = "1.3.0"
Expand Down
2 changes: 1 addition & 1 deletion smoltable/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ tempfile = "3.9.0"
nanoid = "0.4.0"

# NOTE: Don't need bloom filters, because we always do prefix queries for pretty much everything
fjall = { version = "0.6.0" }
fjall = { version = "0.6.1" }

0 comments on commit 74ec17b

Please sign in to comment.