Created
October 26, 2015 16:33
-
-
Save mbastian/440a706f5e863bb65622 to your computer and use it in GitHub Desktop.
readpaldbstore.scala
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
val reader: StoreReader = PalDB.createReader(new File("store.paldb")); | |
val val1: String = reader.get("foo"); | |
var val2: Array[Int] = reader.get(1213); | |
reader.close(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment