Skip to content

Instantly share code, notes, and snippets.

@mbastian
Created September 15, 2015 14:23
Show Gist options
  • Save mbastian/597cdac699cd573e1e95 to your computer and use it in GitHub Desktop.
Save mbastian/597cdac699cd573e1e95 to your computer and use it in GitHub Desktop.
Write store with PalDB example
StoreWriter writer = PalDB.createWriter(new File("store.paldb"));
writer.put("foo", "bar");
writer.put(1213, new int[] {1, 2, 3});
writer.close();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment