nkaralis commented on issue #2793:
URL: https://github.com/apache/jena/issues/2793#issuecomment-2435296238

   I am using fuseki with TDB2 
   ```sh
   # for starting the server
   java -jar fuseki-server.jar --update --tdb2 --loc=databases/testing /endpoint
   ```
   
   I am using the default config file found in `apache-fuseki-5.2.0/run`
   ```
   # Licensed under the terms of http://www.apache.org/licenses/LICENSE-2.0
   
   ## Fuseki Server configuration file.
   
   @prefix :        <#> .
   @prefix fuseki:  <http://jena.apache.org/fuseki#> .
   @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#> .
   
   [] rdf:type fuseki:Server ;
      # Example::
      # Server-wide query timeout.   
      # 
      # Timeout - server-wide default: milliseconds.
      # Format 1: "1000" -- 1 second timeout
      # Format 2: "10000,60000" -- 10s timeout to first result, 
      #                            then 60s timeout for the rest of query.
      #
      # See javadoc for ARQ.queryTimeout for details.
      # This can also be set on a per dataset basis in the dataset assembler.
      #
      # ja:context [ ja:cxtName "arq:queryTimeout" ;  ja:cxtValue "30000" ] ;
   
      # Add any custom classes you want to load.
      # Must have a "public static void init()" method.
      # ja:loadClass "your.code.Class" ;   
   
      # End triples.
      .
   ```
   
   > That shouldn't ever be the case, the way a GRAPH ?g clause is logically 
defined is that the inner pattern is executed independently for each graph in 
the dataset and the results are union'd together with the . So each graph 
independently yields 16 results and these union together to yield 32 results
   
   I see. It makes sense, thank you


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to