Antonio Garrote
Antonio Garrote
@sichvoge In my opinion, any valid type declaration should be allowed: ```yaml anyOf: - Person | Animal[] ``` Expresses: Union(Union(Persion,Animal[])) ```yaml anyOf: - Person - Animal[] ``` Expresses: Union(Person,Animal[]) ```yaml...
Hi all, I'll try to explain a little bit the code Christian linked before. I just came across this discussion while working on something else with Christian. I'm lacking most...
Hi, what kind of synching are we talking about? Is the callbacks support not enough to sync changes in the local graph(s)? Thanks.
Got it, a synchronous API. You're right about the possibility of building a synchronous version of the API for the in-memory store. That was the case for the first version...
Hi @csarven. I'm trying to reproduce the problem, but I'm finding it impossible. This is the code I'm trying: ``` js var rdfstore = require('./src/store'); rdfstore.create(function(err,store) { var insertQuery =...
Hi @csarven I was doing some more digging on this problem and just realised you're using an old version of the store. The frontend directory contains some old code for...
Hi, a few things: - Persistence The new version offers persistence in the browser using IndexDB. Persistence is not provided in the server/node.js. As part of the rewrite I tried...
Hi @johlrogge, I've been aways for some days. I'll look at this asap. Sorry for my late reply.
Thanks for the improvement. I have some basic benchmarking tests in the lubm/browser directory. I will try to run them before merging the PR.
Yes, it is a must. Right now you can only add parsers to load data in the store but not to serialize the content. Nevertheless, W3C's RDF Interfaces API spcifies...