tinkerpop-blueprint

Why simple set and then get on Dynamic Proxy does not persist? (using TinkerPop Frames JavaHandler)

醉酒当歌 提交于 2019-12-25 05:27:19
问题 I wanted to add simple getters and setters on a class that implements VertexFrame and I used JavaHandlers for those. For those methods I didn't want to have any interaction with the database. Unfortunately there is not something like @Ignore so I don't have unexpected annotation exceptions. When I set something on the proxy and immediately I do a get after it goes through reflection, nothing is stored. Could be that I shouldn't be using JavaHandlers but something else.. Btw manager.frame

What is the best practice to update a Vertex after is detached from DB with Tinkerpop Frames?

走远了吗. 提交于 2019-12-13 04:43:37
问题 Let's exemplify I receive a Vertex with Tinkerpop Blueprint, then I use Frames to convert it in an entity. I close the database (so from now the node is detached from the DB) and I show the node on a web page to let the user modify it. The user makes some modifications, then I shoud persist the changes. The problem is that the Instance of the database is already closed, so the entity is detached from the database: What is the best practice (considering performance and memory usage too) to

Sparql endpoint for SAIL object

限于喜欢 提交于 2019-12-07 22:09:12
问题 I have created a SAIL object using tinkerpop blueprints to load RDF data into a Graph database. Ive successfully managed to load the data. The Graph database in question does not have a sparql endpoint to run my query mix test driver. Does anyone know if it possible and if so then how to make a sparql endpoint accessible to my test driver java code over an HTTP server? I am aware 4store, BigData and some other stores have their own built in sparql servers for querying. I am wondering if it is

How to connect Blueprints to a remote neo4j server

≡放荡痞女 提交于 2019-12-07 19:00:59
问题 I am trying to merge two separate efforts. I have an application that currently uses anormcypher to talk to a remote neo4j database, and I am now developing an application that uses TinkerPop Blueprints . In Blueprints I can create a new embedded Neo4jGraph but I don't know how to connect it to my remote neo4j (community edition, not HA) server. I'm looking for the documentation that tells me how to configure that connection (host::port) . 来源: https://stackoverflow.com/questions/30405929/how