From 4a98d32ce1c52aa83db54a2ee0effaed2ed8054e Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Fri, 14 Apr 2023 13:52:55 +0300 Subject: [PATCH] Update README.md --- core/mvcc/README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/core/mvcc/README.md b/core/mvcc/README.md index eff22ea86..2b3656a08 100644 --- a/core/mvcc/README.md +++ b/core/mvcc/README.md @@ -1,6 +1,12 @@ # MVCC for Rust -This is a _work-in-progress_ Rust implementation of the Hekaton optimistic multiversion concurrency control algorithm. +This is a _work-in-progress_ the Hekaton optimistic multiversion concurrency control library in Rust. +The aim of the project is to provide a building block for implementing database management systems. + +## Features + +* Main memory architecture, rows are accessed via an index +* Optimistic multi-version concurrency control ## Development