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
Hello,
I am trying to use the configuration described in the documentation that allows you to create a new graph client inside my scoped method using the IGraphClientFactory. However, because I have a relatively high volume of transactions flowing through my system at once (sometimes 100K+), I wanted to use the Bolt client instead of the http based Graph client. Is this possible? Here is what I am registering in my IOC Container:
It seems like you can only use http(s) with the Uri object though, so if I pass something like: neo4j://some-path.to.svc or bolt://some-path.to.svc I get an error message. I didn't see any overload of the NeoServerConfiguration.GetConfigurationAsync method that takes something other than a Uri though.
Also, since my team is using this library, we would love to dedicate some time to helping support it. Please let me know if you are interested in any help.
The text was updated successfully, but these errors were encountered:
Hmm, well, not with the existing IGraphClientFactory - it's all HTTP I'm afraid.
I would be totally fine with PRs bringing in parity between the two with things like this - and the offer of support is welcome - largely at the moment it will revolve around doing PRs and pulling them in, if you find issues - things you want fixed I'm always happy to look at them
Hello,
I am trying to use the configuration described in the documentation that allows you to create a new graph client inside my scoped method using the
IGraphClientFactory
. However, because I have a relatively high volume of transactions flowing through my system at once (sometimes 100K+), I wanted to use the Bolt client instead of the http based Graph client. Is this possible? Here is what I am registering in my IOC Container:It seems like you can only use http(s) with the Uri object though, so if I pass something like:
neo4j://some-path.to.svc
orbolt://some-path.to.svc
I get an error message. I didn't see any overload of theNeoServerConfiguration.GetConfigurationAsync
method that takes something other than a Uri though.Also, since my team is using this library, we would love to dedicate some time to helping support it. Please let me know if you are interested in any help.
The text was updated successfully, but these errors were encountered: