Created
September 15, 2015 14:23
-
-
Save mbastian/597cdac699cd573e1e95 to your computer and use it in GitHub Desktop.
Write store with PalDB example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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