Skip to content

Commit

Permalink
Update description
Browse files Browse the repository at this point in the history
  • Loading branch information
al8n committed Apr 25, 2024
1 parent f97166c commit d07e5ad
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
4 changes: 2 additions & 2 deletions async-skipdb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "async-skipdb"
version = "0.1.3"
version = "0.1.5"
rust-version.workspace = true
edition.workspace = true
repository.workspace = true
homepage.workspace = true
documentation = "https://docs.rs/async-skipdb"
description = "An embedded, in-memory, ACID, MVCC, almost lock-free and serializable snapshot isolation database engine."
description = "An embedded, in-memory, zero-copy, ACID, MVCC, almost lock-free and serializable snapshot isolation database engine."
license.workspace = true
keywords = ["database", "key-value-store", "memdb", "embedded-database", "memodb"]
categories = ["database-implementations", "concurrency", "data-structures", "asynchronous"]
Expand Down
4 changes: 2 additions & 2 deletions async-skipdb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
</div>
<div align="center">

Blazing fast ACID and MVCC in memory database based on lock-free skiplist.
An embedded, in-memory, zero-copy, ACID, MVCC, almost lock-free and serializable snapshot isolation database engine.

`async-skipdb` uses the same SSI (Serializable Snapshot Isolation) transaction model used in [`badger`](https://github.com/dgraph-io/badger).

Expand All @@ -24,7 +24,7 @@ English | [简体中文][zh-cn-url]

## Introduction

Blazing fast ACID and MVCC in memory database based on lock-free skiplist.
An embedded, in-memory, zero-copy, ACID, MVCC, almost lock-free and serializable snapshot isolation database engine.

`async-skipdb` uses the same SSI (Serializable Snapshot Isolation) transaction model used in [`badger`](https://github.com/dgraph-io/badger).

Expand Down
4 changes: 2 additions & 2 deletions skipdb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "skipdb"
version = "0.1.3"
version = "0.1.5"
rust-version.workspace = true
edition.workspace = true
repository.workspace = true
homepage.workspace = true
documentation = "https://docs.rs/skipdb"
description = "An embedded, in-memory, ACID, MVCC, almost lock-free and serializable snapshot isolation database engine."
description = "An embedded, in-memory, zero-copy, ACID, MVCC, almost lock-free and serializable snapshot isolation database engine."
license.workspace = true
keywords = ["database", "key-value-store", "memdb", "embedded-database", "memodb"]
categories = ["database-implementations", "concurrency", "data-structures"]
Expand Down
6 changes: 2 additions & 4 deletions skipdb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
</div>
<div align="center">

Blazing fast ACID and MVCC in memory database based on lock-free skiplist.

`skipdb` uses the same SSI (Serializable Snapshot Isolation) transaction model used in [`badger`](https://github.com/dgraph-io/badger).
An embedded, in-memory, zero-copy, ACID, MVCC, almost lock-free and serializable snapshot isolation database engine.

[<img alt="github" src="https://img.shields.io/badge/github-al8n/skipdb-8da0cb?style=for-the-badge&logo=Github" height="22">][Github-url]
[<img alt="Build" src="https://img.shields.io/github/actions/workflow/status/al8n/skipdb/ci.yml?logo=Github-Actions&style=for-the-badge" height="22">][CI-url]
Expand All @@ -24,7 +22,7 @@ English | [简体中文][zh-cn-url]

## Introduction

Blazing fast ACID and MVCC in memory database based on lock-free skiplist.
An embedded, in-memory, zero-copy, ACID, MVCC, almost lock-free and serializable snapshot isolation database engine.

`skipdb` uses the same SSI (Serializable Snapshot Isolation) transaction model used in [`badger`](https://github.com/dgraph-io/badger).

Expand Down

0 comments on commit d07e5ad

Please sign in to comment.