Re: start oak with file system storage

2017-10-07 Thread Marco Piovesana
Hi Matt, thanks for the reply. Something like this right? File repositoryRootFolder = new File(directory, "oakrepo"); File repositoryFile = new File(repositoryRootFolder, "repository"); File dataStoreFile = new File(repositoryRootFolder, "datastore"); FileDataStore fileDataStore = new FileDataStor

Re: start oak with file system storage

2017-10-05 Thread Matt Ryan
Hi Marco, I’d probably use data store classes instead (e.g. FileDataStore) and wrap them inside DataStoreBlobStore. -MR On October 5, 2017 at 7:51:58 AM, Marco Piovesana (pioves...@esteco.com) wrote: Hi all, I'm using Oak 1.6.1 with a file system storage (no migration from a previous version o

start oak with file system storage

2017-10-05 Thread Marco Piovesana
Hi all, I'm using Oak 1.6.1 with a file system storage (no migration from a previous version of the data). I think I kinda got lost between the options available to create the repository. I'm currently using a FileBlobStore with the following configuration: File repositoryFolder = new File(reposit