On 05/01/16 15:57, Paul Tyson wrote:
On another thread Andy mentioned fuseki options arq:optIndexJoinStrategy
and arq:optMergeBGPs, with example using "--set" command line option.
How do you set these when running under tomcat? I could not find
instructions or examples in the documentation.
Thanks,
--Paul
The general mechanism in the config file is like timeouts:
ja:context [ ja:cxtName "arq:optMergeBGPs" ; ja:cxtValue "false" ] ;
ja:context is a property that can go on dataset
<#dataset> rdf:type tdb:DatasetTDB ;
tdb:location "DB" ;
ja:context [ ja:cxtName "arq:optMergeBGPs" ; ja:cxtValue "false" ] ;
.
It can go on teh server section as well for server-wide setting.
Andy