ArangoDB Drivers | Tools for Seamless Integration https://arangodb.com/tag/driver/ The database for graph and beyond Mon, 03 Feb 2025 08:01:34 +0000 en-US hourly 1 https://wordpress.org/?v=6.7.1 https://arangodb.com/wp-content/uploads/2023/08/cropped-favicon-32x32.png ArangoDB Drivers | Tools for Seamless Integration https://arangodb.com/tag/driver/ 32 32 Benchmark Results – ArangoDB vs. Neo4j : ArangoDB up to 8x faster than Neo4j https://arangodb.com/2024/12/benchmark-results-arangodb-vs-neo4j-arangodb-up-to-8x-faster-than-neo4j/ https://arangodb.com/2024/12/benchmark-results-arangodb-vs-neo4j-arangodb-up-to-8x-faster-than-neo4j/#respond Tue, 03 Dec 2024 15:47:23 +0000 https://arangodb.com/?p=48862 Introduction This document presents the benchmark results comparing the ArangoDB’s Graph Analytics Engine (GAE) against Neo4j. The GAE is just one component of ArangoDB’s Data Science Suite.  This reproducible benchmark aims to provide a neutral and thorough comparison between the two databases, ensuring a fair and unbiased assessment. We use the wiki-Talk dataset, a widely…

The post Benchmark Results – ArangoDB vs. Neo4j : ArangoDB up to 8x faster than Neo4j appeared first on ArangoDB.

]]>
https://arangodb.com/2024/12/benchmark-results-arangodb-vs-neo4j-arangodb-up-to-8x-faster-than-neo4j/feed/ 0
ArangoJS 4 Alpha: Available Now for Testing https://arangodb.com/2015/09/arangojs-4-alpha-available-now/ https://arangodb.com/2015/09/arangojs-4-alpha-available-now/#respond Tue, 01 Sep 2015 14:54:53 +0000 http://www.arangodb.com/?p=8568 The first alpha of the official JavaScript driver arangojs‘ upcoming major release is now available on npm. Version 4 streamlines the driver’s API by removing unnecessary server roundtrips to obtain references to collections and graphs that already exist: Before: var db = require('arangojs')(); db.collection('users') .then(function(collection) { return collection.import(allTheUsers) }) .then(function() { return db.collection('blogs') }) .then(function(collection)…

The post ArangoJS 4 Alpha: Available Now for Testing appeared first on ArangoDB.

]]>
https://arangodb.com/2015/09/arangojs-4-alpha-available-now/feed/ 0
ArangoDB JavaScript Driver 3.7: Promises & Performance https://arangodb.com/2015/05/arangodb-javascript-driver-3-7-promises-and-performance/ https://arangodb.com/2015/05/arangodb-javascript-driver-3-7-promises-and-performance/#comments Wed, 13 May 2015 13:57:25 +0000 http://www.arangodb.com/?p=7566 ArangoJS, the official ArangoDB JavaScript client, has been updated to version 3.7.0. The new release features significant performance improvements in Node.js and io.js. The dependency on the third-party request module has been replaced with a thin wrapper around node’s own http module, bringing a 3-4x performance improvement for consecutive requests by maintaining a connection pool.…

The post ArangoDB JavaScript Driver 3.7: Promises & Performance appeared first on ArangoDB.

]]>
https://arangodb.com/2015/05/arangodb-javascript-driver-3-7-promises-and-performance/feed/ 1
Crawling GitHub with Promises: ArangoDB Tutorial https://arangodb.com/2015/01/crawling-github-promises/ https://arangodb.com/2015/01/crawling-github-promises/#comments Tue, 06 Jan 2015 11:08:55 +0000 http://www.arangodb.com/?p=5967 The new Javascript driver no longer imposes any promises implementation. It follows the standard callback pattern with a callback using err and res. I wanted to give the new driver a try. A github crawler seemed like a good side-project, especially because the node-github driver follows the same conventions as the Javascript driver. There are…

The post Crawling GitHub with Promises: ArangoDB Tutorial appeared first on ArangoDB.

]]>
https://arangodb.com/2015/01/crawling-github-promises/feed/ 2
ArangoDB Java Driver for Graphs: Enhanced Functionality https://arangodb.com/2014/11/arangodb-java-driver-graphs-2/ https://arangodb.com/2014/11/arangodb-java-driver-graphs-2/#comments Wed, 19 Nov 2014 16:33:46 +0000 http://www.arangodb.com/?p=5263 After defining a graph and filling it with some vertices and edges (see part 1), the time has come to retrieve information out of the graph. Please take a look at the defined graph operations of ArangoDB. These will be the base for our next examples. (Yes, there may be other ways to get the…

The post ArangoDB Java Driver for Graphs: Enhanced Functionality appeared first on ArangoDB.

]]>
https://arangodb.com/2014/11/arangodb-java-driver-graphs-2/feed/ 3
ArangoDB Java Driver: Graph Data Manipulation & Queries https://arangodb.com/2014/11/arangodb-java-driver-graphs/ https://arangodb.com/2014/11/arangodb-java-driver-graphs/#respond Mon, 17 Nov 2014 15:03:19 +0000 http://www.arangodb.com/?p=5211 With ArangoDB 2.2 the new graph API was released featuring multi collection graphs (see blog). With the new version (2.2.1) of arangodb-java-driver the new graph API is supported. In the following you can find a small example of creating a graph with Java. For the import via maven and configuring the driver, please read the…

The post ArangoDB Java Driver: Graph Data Manipulation & Queries appeared first on ArangoDB.

]]>
https://arangodb.com/2014/11/arangodb-java-driver-graphs/feed/ 0
ArangoDB Java Driver: Batch & Asynchronous Mode | ArangoDB Blog https://arangodb.com/2014/11/arangodb-java-driver-batch-asynchronous-mode/ https://arangodb.com/2014/11/arangodb-java-driver-batch-asynchronous-mode/#comments Fri, 14 Nov 2014 15:01:48 +0000 http://www.arangodb.com/?p=5184 The current arangodb-java-driver supports the usage of ArangoDB’s batch and asynchronous interface. This post will guide you through the usage of these features. The batch interface The batch interface enables the user to stack a series of calls and execute them in a batch request. Each stacked request returns a request id that can be…

The post ArangoDB Java Driver: Batch & Asynchronous Mode | ArangoDB Blog appeared first on ArangoDB.

]]>
https://arangodb.com/2014/11/arangodb-java-driver-batch-asynchronous-mode/feed/ 1
ArangoDB Java Driver: Simplifying Database Interactions https://arangodb.com/2014/11/arangodb-java-driver/ https://arangodb.com/2014/11/arangodb-java-driver/#respond Fri, 14 Nov 2014 08:41:50 +0000 http://www.arangodb.com/?p=5183 A new arangodb-java-driver is out now, it’s on github. The driver is available for ArangoDB from version 2.2 onwards. How to include the driver in your application ? The driver is available as maven artifact. To add the driver to your project with maven, add the following code to your pom.xml: <dependencies> <dependency> <groupId>com.arangodb</groupId> <artifactId>arangodb-java-driver</artifactId>…

The post ArangoDB Java Driver: Simplifying Database Interactions appeared first on ArangoDB.

]]>
https://arangodb.com/2014/11/arangodb-java-driver/feed/ 0
AshikawaCore 0.10 Released: Enhancements & Updates | ArangoDB https://arangodb.com/2014/03/ashikawacore-0-10-released/ https://arangodb.com/2014/03/ashikawacore-0-10-released/#respond Fri, 14 Mar 2014 20:26:57 +0000 http://www.arangodb.com/?p=3472 We just released version 0.10 of the low-level ArangoDB Ruby driver Ashikawa::Core. It supports both ArangoDB 1.4 and 2.0. For more details see the release notes. We’re also working on the first version of Guacamole: It is an ODM for Rails and is based upon Ashikawa::Core.

The post AshikawaCore 0.10 Released: Enhancements & Updates | ArangoDB appeared first on ArangoDB.

]]>
https://arangodb.com/2014/03/ashikawacore-0-10-released/feed/ 0
ArangoDB PHP Driver Version 1.0 Released | ArangoDB 2012 https://arangodb.com/2012/12/arangodb-php-driver-version-1-0-released/ https://arangodb.com/2012/12/arangodb-php-driver-version-1-0-released/#respond Sat, 01 Dec 2012 12:39:31 +0000 http://www.arangodb.com/?p=1545 Yesterday version 1.0 of the PHP driver for ArangoDB was released. It contains basic support for edges as well as fixes and tests. Check out the Changelog for further details. Many thanks go to Frank Mayer for his contribution! 🙂 There is also a comprehensive PHP driver tutorial available on Github.

The post ArangoDB PHP Driver Version 1.0 Released | ArangoDB 2012 appeared first on ArangoDB.

]]>
https://arangodb.com/2012/12/arangodb-php-driver-version-1-0-released/feed/ 0