Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
mbastian committed Jun 26, 2016
1 parent 87a5ab2 commit d05ccdd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ PalDB is available on Maven Central, hence just add the following dependency:
<dependency>
<groupId>com.linkedin.paldb</groupId>
<artifactId>paldb</artifactId>
<version>1.1.0</version>
<version>1.2.0</version>
</dependency>
```
Scala SBT
```
libraryDependencies += "com.linkedin.paldb" % "paldb" % "1.1.0"
libraryDependencies += "com.linkedin.paldb" % "paldb" % "1.2.0"
```


Expand Down

1 comment on commit d05ccdd

@vingup
Copy link

@vingup vingup commented on d05ccdd Nov 18, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi Mathieu,
I tried Writing to a StoreFile using compression on/off. But did not find any difference between
the store file size. What could I be missing?

    config.set(Configuration.COMPRESSION_ENABLED, "true");
    StoreWriter writer = PalDB.createWriter(new File("/tmp/store.paldb"), config);

My keys and values are String. value being a json formatted string.

Please sign in to comment.