ArangoDB Java | Integration and Development with NoSQL https://arangodb.com/tag/java/ The database for graph and beyond Fri, 07 Feb 2025 13:08:14 +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 Java | Integration and Development with NoSQL https://arangodb.com/tag/java/ 32 32 Spring is coming! – ArangoDB meets Spring Data https://arangodb.com/2017/12/spring-coming-arangodb-meets-spring-data/ https://arangodb.com/2017/12/spring-coming-arangodb-meets-spring-data/#comments Thu, 14 Dec 2017 09:19:59 +0000 https://www.arangodb.com/?p=23931 This year we got a lot of requests from our customers to provide Spring Data support for ArangoDB. So we listened and teamed up with one of our bigger customers from the financial sector to develop a Spring Data implementation for ArangoDB. We have also made an extensive demo on how to use Spring Data…

The post Spring is coming! – ArangoDB meets Spring Data appeared first on ArangoDB.

]]>
https://arangodb.com/2017/12/spring-coming-arangodb-meets-spring-data/feed/ 3
ArangoDB Java Driver: Load Balancing for Performance https://arangodb.com/2017/12/introducing-the-new-arangodb-java-driver-load-balancing/ https://arangodb.com/2017/12/introducing-the-new-arangodb-java-driver-load-balancing/#comments Tue, 12 Dec 2017 13:30:02 +0000 https://www.arangodb.com/?p=23832 The newest release 4.3.2 of the official ArangoDB Java driver comes with load balancing for cluster setups and advanced fallback mechanics. Load balancing strategies Round robin There are two different strategies for load balancing that the Java driver provides. The first and most common strategy is the round robin way. Round robin does, what the…

The post ArangoDB Java Driver: Load Balancing for Performance appeared first on ArangoDB.

]]>
https://arangodb.com/2017/12/introducing-the-new-arangodb-java-driver-load-balancing/feed/ 2
ArangoDB | VelocyStream Async Binary Protocol – Data Streaming https://arangodb.com/2017/08/velocystream-async-binary-protocol/ https://arangodb.com/2017/08/velocystream-async-binary-protocol/#comments Thu, 31 Aug 2017 14:41:41 +0000 http://www.arangodb.com/?p=22978 With the 3.2 release, ArangoDB comes with version 1.1 of the binary protocol VelocyStream. VelocyStream is a bi-directional async binary protocol which supports sending messages pipelined, multiplexed, uni-directional or bi-directional. The messages themselves are VelocyPack objects. The story of VelocyStream began with version 3.0 of ArangoDB which introduced VelocyPack as the new internal storage format…

The post ArangoDB | VelocyStream Async Binary Protocol – Data Streaming appeared first on ArangoDB.

]]>
https://arangodb.com/2017/08/velocystream-async-binary-protocol/feed/ 2
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
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