tina4-ultipa 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +10 -4
- data/lib/tina4_ultipa/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 35c7cb7269b260568ddffe929ab9988fd3d4a53ae95aff2ea056af32a03d8227
|
|
4
|
+
data.tar.gz: 034e1430d41abef72a2e282a54b7848d74f093cd3f9965505a2fd7b2f402e526
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3f095a77b541235326e4369af963f1f60b9db72101dca565a6b9472a3da3705b2ca7d2322b548c56677e8be1330535d592ce9f7de312e6cb678ee5561f45f55b
|
|
7
|
+
data.tar.gz: f8d9ff4fa5d79b6cb89a2166d5166ee156281cf96dc907ca5e2b031cae676b3f08e5315196d1d3d8c92ef5bdda3cb5561233a75f964768fc4a60e4f2744802cd
|
data/README.md
CHANGED
|
@@ -35,7 +35,9 @@ database** (`ultipa-gqldb`). It is the Ultipa driver behind
|
|
|
35
35
|
[Tina4](https://tina4.com)'s graph data layer — but has **no Tina4 dependency** and
|
|
36
36
|
is perfectly usable on its own. Tina4's core stays zero-dependency; this driver is
|
|
37
37
|
an *optional* gem loaded only for `ultipa://` connections, speaking gRPC directly
|
|
38
|
-
|
|
38
|
+
on top of the pure-Ruby [`http-2`](https://rubygems.org/gems/http-2) gem — with
|
|
39
|
+
**no `grpc` C extension and no `google-protobuf` runtime**. Zero native code,
|
|
40
|
+
zero transitive deps: `bundle install` pulls exactly one gem (`http-2`).
|
|
39
41
|
|
|
40
42
|
> **Ultipa** is a high-performance graph database with a GQL (ISO/IEC 39075) query
|
|
41
43
|
> surface. Learn more at **[ultipa.com](https://www.ultipa.com)** · docs at
|
|
@@ -46,9 +48,13 @@ an *optional* gem loaded only for `ultipa://` connections, speaking gRPC directl
|
|
|
46
48
|
- **Complete value decoding.** Every gqldb `PropertyType` is decoded to a natural
|
|
47
49
|
Ruby value — including the composites and temporals most thin clients skip
|
|
48
50
|
(see [Type support](#type-support)).
|
|
49
|
-
- **
|
|
50
|
-
|
|
51
|
-
|
|
51
|
+
- **Pure Ruby, zero C extensions.** No `grpc` gem, no `google-protobuf`, no
|
|
52
|
+
native compilation on `gem install`. HTTP/2 runs through the pure-Ruby
|
|
53
|
+
[`http-2`](https://rubygems.org/gems/http-2) gem
|
|
54
|
+
(`lib/tina4_ultipa/grpc.rb` layers gRPC framing on top), and the proto3
|
|
55
|
+
wire codec is hand-rolled in `lib/tina4_ultipa/pb.rb` for the 8 gqldb
|
|
56
|
+
messages we consume. Faster installs, no toolchain, and none of the
|
|
57
|
+
`google-protobuf` transitive-pin conflicts that bite in mixed dep graphs.
|
|
52
58
|
- **Fails loud.** A bad statement raises; it never returns a falsy value you might
|
|
53
59
|
miss. An unreachable host raises within your `connect_timeout`.
|
|
54
60
|
- **Cross-language parity.** The same driver exists for
|
data/lib/tina4_ultipa/version.rb
CHANGED