You may want to use the transactional version for testing, it will allow streaming for updates through Fuseki (I'm assuming that is what you are testing). I my assembler file looks like:
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix ja: <http://jena.hpl.hp.com/2005/11/Assembler#> . ja:DatasetNull rdfs:subClassOf ja:RDFDataset . <#emptyDataset> rdf:type ja:DatasetNull ; ja:transactional true . On Tue, Oct 29, 2013 at 2:22 PM, Tim Harsch <[email protected]> wrote: > I discovered DatasetAssemblerVocab which helped me realize I was using a > wrong prefix. So, looks like this will do it: > > @prefix ja: <http://jena.hpl.hp.com/2005/11/Assembler#> . > <#dataset> rdf:type ja:DatasetNull . > > > > > On Tuesday, October 29, 2013 11:10 AM, Tim Harsch <[email protected]> > wrote: > > > Does anyone have an example of creating a GraphStoreNull or > > GraphStoreNullTransactional using an assembler configuration file? > > >
