Today I tried to find an OrientDB binding for Clojure. I have found 2 libs: https://github.com/eduardoejp/clj-orient and https://github.com/eduardoejp/orientdb.clj .
I have tried to connect using clj-orient first, but it just throws an Exception
OIOException Cannot connect to any configured remote nodes: 127.0.0.1:2424 com.orientechnologies.orient.client.remote.OStorageRemote.createNetworkConnection (OStorageRemote.java:1413)
I have tried to connect through console, using the same credentials and connection was OK. It seems, that due to the fact of this lib is rather outdated, it tries to connect over outdated protocol. And it fails.
I did not tried orientdb.clj, cause it has no documentation at all. Maybe it is an option?
How clojure folks are connecting to the OrientDB nowadays?
Thanks for your help in advance!