|
1 |
| -<p align="center"> |
2 |
| -<img src="https://user-images.githubusercontent.com/56880684/201497081-40976107-ef47-4a12-bf6d-ceafc8da3464.png" width="40%"/> |
3 |
| -</p> |
4 |
| -<h3 align="center">A distributed Gremlin-compatible graph database</h3> |
| 1 | +## Embedded database library for EDMA |
5 | 2 |
|
6 |
| -<h3 align="center">Open for contribution 🚀</h3> |
7 |
| -<br/> |
| 3 | +**NOTE:** (SolomonDB Forked) |
8 | 4 |
|
9 |
| -<p align="center"> |
10 |
| - <a href="https://github.com/nomadiz/solomon-db"><img src="https://img.shields.io/badge/built_with-Rust-dca282.svg?style=flat-square"></a> |
11 |
| - |
12 |
| -<a href="https://github.com/nomadiz/solomon-db"><img src="https://img.shields.io/badge/build%20with-gremlin-green"></a> |
13 |
| - |
14 |
| -<a href="https://github.com/nomadiz/solomon-db"><img src="https://img.shields.io/github/v/release/nomadiz/solomon-db?color=%23ff00a0&include_prereleases&label=version&sort=semver&style=flat-square"></a> |
15 |
| - |
16 |
| -<a href="https://github.com/nomadiz/solomon-db/blob/master/LICENSE"><img src="https://img.shields.io/badge/license-MIT License-00bfff.svg?style=flat-square"></a> |
| 5 | +### Description |
17 | 6 |
|
18 |
| -</p> |
19 |
| -<p align="center"> |
20 |
| - <a href="https://github.com/nomadiz/solomon-db/graphs/contributors" alt="Contributors"> |
21 |
| - <img src="https://img.shields.io/github/contributors/nomadiz/solomon-db" /></a> |
22 |
| - <a href="https://github.com/nomadiz/solomon-db/pulse" alt="Activity"> |
23 |
| - |
24 |
| - <img src="https://img.shields.io/github/commit-activity/m/nomadiz/solomon-db" /></a> |
25 |
| - <a href="https://users.rust-lang.org/t/solomondb-in-development-gremlin-compatible-graph-database-update/84750" alt="Activity"> |
26 |
| - |
27 |
| - <img src="https://img.shields.io/badge/Rust%20User%20Forum-follow-orange"/> |
28 |
| - </a> |
29 |
| -</p> |
| 7 | +Embedded database library that can be installed as Rust crate. This can be used to run an embedded graph database on top of other multiple storage engines |
30 | 8 |
|
31 |
| -## What is SolomonDB? |
| 9 | +### Storage layer |
32 | 10 |
|
33 |
| -**SolomonDB** is an open source, distributed, easy-to-use, user friendly graph database built by nomadic engineers. SolomonDB enhances the experience of working with graph database using GQL (Gremlin Query Language). SolomonDB can run in an offline mode and acts as an embedded graph database on top of **RocksDB**. Last but not least, SolomonDB is a database for community. It supports multiple storage layer with a set of plugins for serialization. |
34 |
| - |
35 |
| -## Why is it named "Solomon"? |
36 |
| - |
37 |
| -Solomon is the name of a the wisest person who ever lived, King Solomon. If you have ever read Bible, you might know some stories of King Solomon. One of those stories is when King Solomon asks for wishdom. Based on that idea, Solomon DB is built as my personal side project to gain more knowledge about database internals and graph database architecture. |
38 |
| - |
39 |
| -## Roadmap |
40 |
| - |
41 |
| -- [x] Implement RocskDB storage layer |
42 |
| -- [x] Implement Redb storage layer |
43 |
| -- [ ] Database server |
44 |
| -- [ ] Embedded library |
45 |
| -- [ ] Support Gremlin query language |
46 |
| -- [ ] Multi-row, multi-table ACID transactions |
47 |
| -- [ ] Single-node, or highly-scalable distributed mode |
48 |
| -- [ ] Store structured and unstructured data |
49 |
| -- [ ] Client (JS / Rust / Go) library |
50 |
| - |
51 |
| -## Documentation |
52 |
| - |
53 |
| -For guidance on installation, development, deployment, and administration, see our [SolomonDB documentation](https://nomadiz.github.io/solomon-db/). |
54 |
| - |
55 |
| -The documentation page is built using Rust Mdbook. Shoutout to Rust ecosystem. ❤️ |
56 |
| - |
57 |
| -## Community |
58 |
| - |
59 |
| -Join our growing community around the world, for help, ideas, and discussions regarding SurrealDB. |
60 |
| - |
61 |
| -- View SolomonDB [Blog](https://nomadiz.hashnode.dev/) |
62 |
| -- View weekly announcement [Rust language Forum](https://users.rust-lang.org/t/solomondb-gremlin-compatible-graph-database-weekly-update/84750) |
63 |
| - |
64 |
| -Support the creator |
65 |
| - |
66 |
| -- [Github](https://github.com/chungquantin) |
67 |
| -- [Twitter](https://twitter.com/chasechung111) |
| 11 | +| Name | Type | Concurrency | Description | |
| 12 | +| ----------- | --------- | --------------- | ------------------------------------------------------------------------------------------------------------------ | |
| 13 | +| **RocksDB** | key-value | Multi-threaded | OptimisticTransactionDB of RocksDB is applied into SolomonDB to allow ACID transaction with multithreaded feature. | |
| 14 | +| **Redb** | key-value | Single-threaded | Simple use case of Redb is efficient for simple on-disk store. | |
| 15 | +| **Sled** | key-value | Single-threaded | The champagne of beta embedded databases | |
0 commit comments