All Projects → flosse → R2d2 Cypher

flosse / R2d2 Cypher

Cypher support for the r2d2 connection pool

Programming Languages

rust
11053 projects

Projects that are alternatives of or similar to R2d2 Cypher

Neo4j Graph Algorithms
Efficient Graph Algorithms for Neo4j
Stars: ✭ 713 (+8812.5%)
Mutual labels:  cypher, neo4j, graph-database
Neo4j Etl
Data import from relational databases to Neo4j.
Stars: ✭ 165 (+1962.5%)
Mutual labels:  cypher, neo4j, graph-database
Neo4j
Graphs for Everyone
Stars: ✭ 9,582 (+119675%)
Mutual labels:  cypher, neo4j, graph-database
Neo4j Tableau
Neo4j Tableau Integration via WDC
Stars: ✭ 56 (+600%)
Mutual labels:  cypher, neo4j, graph-database
Public-Transport-SP-Graph-Database
Metropolitan Transport Network from São Paulo mapped in a NoSQL graph database.
Stars: ✭ 25 (+212.5%)
Mutual labels:  neo4j, graph-database, cypher
seabolt
Neo4j Bolt Connector for C
Stars: ✭ 37 (+362.5%)
Mutual labels:  neo4j, graph-database, cypher
Neo4j 3d Force Graph
Experiments with Neo4j & 3d-force-graph https://github.com/vasturiano/3d-force-graph
Stars: ✭ 159 (+1887.5%)
Mutual labels:  cypher, neo4j, graph-database
Movies Java Bolt
Neo4j Movies Example application with SparkJava backend using the neo4j-java-driver
Stars: ✭ 66 (+725%)
Mutual labels:  cypher, neo4j, graph-database
angular-neo4j
Neo4j Bolt driver wrapper for Angular
Stars: ✭ 18 (+125%)
Mutual labels:  neo4j, graph-database, cypher
neo4j-faker
Use faker cypher functions to generate demo and test data with cypher
Stars: ✭ 30 (+275%)
Mutual labels:  neo4j, graph-database, cypher
Movies Javascript Bolt
Neo4j Movies Example with webpack-in-browser app using the neo4j-javascript-driver
Stars: ✭ 123 (+1437.5%)
Mutual labels:  cypher, neo4j, graph-database
NeoClient
🦉 Lightweight OGM for Neo4j which support transactions and BOLT protocol.
Stars: ✭ 21 (+162.5%)
Mutual labels:  neo4j, graph-database, cypher
Movies Python Bolt
Neo4j Movies Example application with Flask backend using the neo4j-python-driver
Stars: ✭ 197 (+2362.5%)
Mutual labels:  cypher, neo4j, graph-database
ml-models
Machine Learning Procedures and Functions for Neo4j
Stars: ✭ 63 (+687.5%)
Mutual labels:  neo4j, graph-database, cypher
Neo4j Python Driver
Neo4j Bolt driver for Python
Stars: ✭ 607 (+7487.5%)
Mutual labels:  cypher, neo4j, graph-database
Neography
A thin Ruby wrapper to the Neo4j Rest API
Stars: ✭ 606 (+7475%)
Mutual labels:  neo4j, graph-database
boltex
Elixir driver for the neo4j bolt protocol
Stars: ✭ 27 (+237.5%)
Mutual labels:  neo4j, graph-database
Neo4j Graphql Js
A GraphQL to Cypher query execution layer for Neo4j and JavaScript GraphQL implementations.
Stars: ✭ 585 (+7212.5%)
Mutual labels:  cypher, neo4j
neo4j-ml-procedures
This project provides procedures and functions to support machine learning applications with Neo4j.
Stars: ✭ 37 (+362.5%)
Mutual labels:  neo4j, cypher
legis-graph
ETL scripts for loading US Congressional data from govtrack.us into Neo4j
Stars: ✭ 48 (+500%)
Mutual labels:  neo4j, cypher

r2d2_cypher

r2d2-cypher is a r2d2 connection pool for rusted-cypher.

Build Status

Example

extern crate r2d2;
extern crate r2d2_cypher;

use r2d2::{Config, Pool};
use r2d2_cypher::CypherConnectionManager;

pub fn main() {
  let db_url  = "http://neo4j:[email protected]:7474/db/data";
  let manager = CypherConnectionManager{url:db_url.to_owned()};
  let config  = Config::builder().pool_size(5).build();
  let pool    = Pool::new(config, manager).unwrap();
  let client  = pool.clone().get().unwrap();
  let result  = client.cypher().exec("MATCH (n)-[r]->() RETURN n");
}

License

This project is licensed under the MIT license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].