Anyone using Rust and Neo4j in application or on production environment?
Or maybe someone have information about official driver for Neo4j in Rust?
1 Like
Hi,
There are no Rust official drivers (only Java, .NET, Python, JavaScript and Go).
Here are the few Rust projects for Neo4j I found so far:
- GitHub - 0xSiO/bolt-rs: Communicate with Bolt-compatible graph databases in Rust! ⚡🔩 (Bolt library)
- GitHub - yehohanan7/neo4rs: Neo4j driver for rust (Rust driver)
- GitHub - technige/rusty-bolt: Experimental Neo4j driver for Rust (Experimental driver)
One of the hardest bit of maintaining a driver is to support routing (for Neo4j clusters) and I don't think any of the above projects support that.
You can of course use the Cypher transactional HTTP API instead of Bolt (though a managed service like Aura does not support HTTP yet).