You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@jena.apache.org by Paul Tyson <ph...@sbcglobal.net> on 2016/01/05 16:57:08 UTC

how to set fuseki options under tomcat

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


Re: how to set fuseki options under tomcat

Posted by Andy Seaborne <an...@apache.org>.
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