Guest User

Untitled

a guest
Nov 19th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. // durable file memory persistence
  2. if(enableFilePersistence){
  3. PersistentStoreConfiguration persistentStoreConfiguration = new PersistentStoreConfiguration();
  4. persistentStoreConfiguration.setPersistentStorePath("./data/store");
  5. persistentStoreConfiguration.setWalArchivePath("./data/walArchive");
  6. persistentStoreConfiguration.setWalStorePath("./data/walStore");
  7. igniteConfiguration.setPersistentStoreConfiguration(persistentStoreConfiguration);
  8. }
Add Comment
Please, Sign In to add comment