From 74ec17bbd0afd49d31a4f7f0a95ea2cef0d58828 Mon Sep 17 00:00:00 2001 From: marvin-j97 Date: Thu, 25 Jan 2024 16:27:32 +0100 Subject: [PATCH] update storage engine version --- README.md | 2 +- server/Cargo.toml | 2 +- smoltable/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 47b56ab..16e8ada 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/server/Cargo.toml b/server/Cargo.toml index e3675cc..0c4b67e 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -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" diff --git a/smoltable/Cargo.toml b/smoltable/Cargo.toml index 5004ac5..f335775 100644 --- a/smoltable/Cargo.toml +++ b/smoltable/Cargo.toml @@ -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" }