config.ttl 1.0 KB

123456789101112131415161718192021222324252627282930
  1. # Licensed under the terms of http://www.apache.org/licenses/LICENSE-2.0
  2. ## Fuseki Server configuration file.
  3. @prefix : <#> .
  4. @prefix fuseki: <http://jena.apache.org/fuseki#> .
  5. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
  6. @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
  7. @prefix ja: <http://jena.hpl.hp.com/2005/11/Assembler#> .
  8. [] rdf:type fuseki:Server ;
  9. # Example::
  10. # Server-wide query timeout.
  11. #
  12. # Timeout - server-wide default: milliseconds.
  13. # Format 1: "1000" -- 1 second timeout
  14. # Format 2: "10000,60000" -- 10s timeout to first result,
  15. # then 60s timeout for the rest of query.
  16. #
  17. # See javadoc for ARQ.queryTimeout for details.
  18. # This can also be set on a per dataset basis in the dataset assembler.
  19. #
  20. # ja:context [ ja:cxtName "arq:queryTimeout" ; ja:cxtValue "30000" ] ;
  21. # Add any custom classes you want to load.
  22. # Must have a "public static void init()" method.
  23. # ja:loadClass "your.code.Class" ;
  24. # End triples.
  25. .