ArangoDB Drivers | Tools and Integrations for Database https://arangodb.com/category/drivers/ 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 and Integrations for Database https://arangodb.com/category/drivers/ 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
Configuring ArangoDB-PHP to use active failover https://arangodb.com/2018/03/arangodb-php-active-failover/ https://arangodb.com/2018/03/arangodb-php-active-failover/#respond Thu, 08 Mar 2018 12:32:15 +0000 https://www.arangodb.com/?p=24926 This article is about setting up active failover for ArangoDB-PHP, the PHP client driver for ArangoDB. It requires ArangoDB-PHP 3.3.2 or higher, and an ArangoDB server version of 3.3.4 or higher. Interested in trying out ArangoDB? Fire up your cluster in just a few clicks with ArangoDB ArangoGraph: the Cloud Service for ArangoDB. Start your…

The post Configuring ArangoDB-PHP to use active failover appeared first on ArangoDB.

]]>
https://arangodb.com/2018/03/arangodb-php-active-failover/feed/ 0
ArangoJS 6.0.0 released: Load Balancing, Automated Failover and completely written in TypeScript https://arangodb.com/2018/01/arangojs-6-released-load-balancing-failover-typescript/ https://arangodb.com/2018/01/arangojs-6-released-load-balancing-failover-typescript/#comments Fri, 12 Jan 2018 16:23:54 +0000 https://www.arangodb.com/?p=24257 Version 6.0.0 of the JavaScript driver arangojs is now available (Find it on GitHub). This is a major release that introduces a small number of breaking changes so make sure to check out the arangojs changelog before upgrading. The most significant additions in this release are support for load balancing and automated failover as well as improved browser…

The post ArangoJS 6.0.0 released: Load Balancing, Automated Failover and completely written in TypeScript appeared first on ArangoDB.

]]>
https://arangodb.com/2018/01/arangojs-6-released-load-balancing-failover-typescript/feed/ 1
ArangoDB Spark Connector: Seamless Integration https://arangodb.com/2016/10/arangodb-spark-connector/ https://arangodb.com/2016/10/arangodb-spark-connector/#comments Tue, 25 Oct 2016 16:50:00 +0000 http://www.arangodb.com/?p=18851 Currently we are diving deeper into the Apache Spark world. We started with an implementation of a Spark-Connector written in Scala. The connector supports loading of data from ArangoDB into Spark and vice-versa. Today we release a first prototype with an aim of including our community into the development process early to build a product…

The post ArangoDB Spark Connector: Seamless Integration appeared first on ArangoDB.

]]>
https://arangodb.com/2016/10/arangodb-spark-connector/feed/ 2
Improved Java Drivers for ArangoDB 3.1 Release https://arangodb.com/2016/10/updated-java-drivers-with-arangodb-3-1/ https://arangodb.com/2016/10/updated-java-drivers-with-arangodb-3-1/#respond Fri, 21 Oct 2016 12:40:18 +0000 http://www.arangodb.com/?p=18750 The upcoming 3.1 release comes with a binary protocol – VelocyStream – to transport VelocyPack (internal storage format of ArangoDB introduced with the 3.0 release) data between ArangoDB and client applications. VelocyPack stores a superset of JSON, is more compact and has a fast attribute lookup. On the other hand, VelocyStream allows to send VelocyPack…

The post Improved Java Drivers for ArangoDB 3.1 Release appeared first on ArangoDB.

]]>
https://arangodb.com/2016/10/updated-java-drivers-with-arangodb-3-1/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 Nightly Travis Builds: Continuous Integration Updates https://arangodb.com/2015/07/arangodb-nightly-travis-builds/ https://arangodb.com/2015/07/arangodb-nightly-travis-builds/#respond Thu, 23 Jul 2015 16:27:54 +0000 http://www.arangodb.com/?p=8384 Great news for driver maintainers that want access to the latest developments in ArangoDB. Many of you have asked us if we can provide a nightly build of our ArangoDB database to improve CI test automation using Travis-CI. The Travis builds for ArangoDB 2.6, 2.7 and devel will be generated and published shortly after midnight…

The post ArangoDB Nightly Travis Builds: Continuous Integration Updates appeared first on ArangoDB.

]]>
https://arangodb.com/2015/07/arangodb-nightly-travis-builds/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