You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+23-12Lines changed: 23 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -15,18 +15,29 @@ Cayley is an open-source database for [Linked Data](https://www.w3.org/standards
15
15
16
16
## Features
17
17
18
-
- Built-in query editor, visualizer and REPL
19
-
- Multiple query languages:
20
-
-[Gizmo](./docs/gizmoapi.md): query language inspired by [Gremlin](https://tinkerpop.apache.org/gremlin.html)
21
-
-[GraphQL](./docs/graphql.md)-inspired query language
22
-
-[MQL](./docs/mql.md): simplified version for [Freebase](https://en.wikipedia.org/wiki/Freebase_(database)) fans
23
-
- Modular: easy to connect to your favorite programming languages and back-end stores
24
-
- Production ready: well tested and used by various companies for their production workloads
25
-
- Fast: optimized specifically for usage in applications
26
-
27
-
### Performance
28
-
29
-
Rough performance testing shows that, on 2014 consumer hardware and an average disk, 134m quads in LevelDB is no problem and a multi-hop intersection query -- films starring X and Y -- takes ~150ms.
18
+
### 🗄️ Multiple Backend Stores
19
+
-**In-memory, ephemeral**
20
+
- btree in-memory-database
21
+
-**[Key-Value Stores](./kv/kv.go)**
22
+
-[Bolt](https://github.com/etcd-io/bbolt): Lightweight embedded K/V store
23
+
-[Badger](https://github.com/dgraph-io/badger): Full-featured K/V store
24
+
-[Pebble](https://github.com/cockroachdb/pebble): LevelDB/RocksDB inspired K/V store
0 commit comments