Tagged Questions
The allegrograph tag has no wiki summary.
4
votes
6answers
1k views
Difference between graph database: Neo4j & AllegroGraph
What is the difference between this 2 graph DB: Neo4j and AllegroGraph?
Which is better for JAVA Web programming?
Thanks
Erwin
3
votes
1answer
33 views
Define rules for AllegroGraph triples and how to apply them
I'm using AllegroGraph to store statement like this:
<newsid1 hasAnnotation Gamma>
<newsid1 hasAnnotation Beta>
I would like to define a rule on this staments that says: if the ...
3
votes
1answer
51 views
RDF reading/parsing errors
I have some RDF files which I want to import into a tripplestore(AllegroGraph), but at the first file I get a SAX parser error, stating there is an unrecognized character. After removing the line in ...
2
votes
1answer
117 views
Allegrograph - Functors like RDF objects properties?
Using Allegrograph, Prolog functors are pretty awesome, but there is one downside.
Let's say you define a functor that links two entities, for example parentOf which equals to "!n:motherOf OR ...
1
vote
2answers
56 views
what's the difference between allegrograph and five column mysql table?
Allegrograph is basically a RDF triple(actually five field) store. Then why can't we create a MySQL table with five columns and store the triples in them. ?
What features does AG have over such MySql ...
1
vote
1answer
21 views
Configuring Sesame with Allegrograph
How can I configure Sesame with Allegrograph? I know agraph provides similar API's ti Sesame's ones. However, I'd like to use Alibaba.
Thanks
1
vote
1answer
183 views
Managing transactions with AllegroGraph's Jena API
I'm uncertain as to the behaviour of the AllegroGraph triple store in regard to transactions. The tutorial talks about using two connections, but does not mention Jena models.
If I use Model's ...
1
vote
1answer
52 views
Is it possible to query AllegroGraph using roqet?
I am trying to query AllegroGraph 4.0 using roqet to extract data in CSV. Is it possible? In roqet man page it is not clear if it can query a triple store besides rdf files.
About AG HTTP protocol:
...
1
vote
3answers
1k views
Object-to-Triple mapping using AllegroGraph RDF store?
My project is building a Java web application on top of the AllegroGraph RDF store. I would like to find a good solution to map between the triples that come out of the store and our domain objects. ...
0
votes
1answer
61 views
Needing RDF sample dataset
Hi everyone
Ive been looking for some time now for a big enough semantic dataset to do some testing on an algorithm Im developing.
With this I mean an already existing RDF/XML file that I could ...
0
votes
1answer
105 views
Registering Namespace in AllegroGraph(Registed nameSpaces is missing.)
I have a problem about registering namespace in AllegroGraph.
My Java code (program 1) :
AllegroGraphConnection agc = new AllegroGraphConnection();
agc.enable();
AllegroGraph ag = ...