-
Notifications
You must be signed in to change notification settings - Fork 11k
Description
Is your feature request related to a problem? Please describe.
There is interest in building an interface to a popular Graph Database in Julia as a community project (MIT), but the ClientAPI to the DB requires gRPC methods for channel/session/transaction etc., which are not available in Julia.
Describe the solution you'd like
A maintained Julia implementation would allow for all the benefits Julia has to offer like Multiple Dispatch and others and could be used as the connection layer instead of calling into Python for example.
Describe alternatives you've considered
The only alternative I can see would be to either call into Python, or build a minimal gRPC Julia pkg, with just the required methods.
Additional context
There was an approach to build a Julia pkg called gRPC.jl, but the pkg and it's dependencies are abandoned and even removed from the pkg registry.
#Humans-of-Julia/TypeDBClient.jl#20