ebremer opened a new issue, #3112:
URL: https://github.com/apache/jena/issues/3112

   ### Version
   
   5.3.0
   
   ### Question
   
   How to create a TDB2 with custom StoreParam settings?
   
   I can set modified StoreParams with
   ```
   TDB1Factory.setup(location, params);
   ```
   but
   ```
   TDB2Factory.setup(location, params);
   ```
   doesn't exist.  This appears to work
   ```
       public static void CreateTDB2Database() {
           Location location = Location.create("/tdb2");
           StoreParams params = StoreParamsBuilder.create("alpha")
               .blockSize(StoreParamsConst.blockSize)
               .build();
           DatasetGraphTDB dsg = TDB2StorageBuilder.build(location, params, 
null);
           Dataset ds = DatasetFactory.wrap(dsg);
           ds.close();
       }
   ```
   What is the preferred way to do this programmatically?
   '''


-- 
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