Infinispan 5.3.0 will be introducing a LevelDB cache store. This cache store will allow you to store cache entries using a fast filesystem based LevelDB key-value store originally developed by Google. This cache store uses a Java implementation of LevelDB, and maybe one day, it can get even better performance by using the JNI implementation.
Configuration is simple:
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
<loaders> | |
<leveldbStore | |
location="/tmp/leveldb/data" | |
expiredLocation="/tmp/leveldb/expired"/> | |
</loaders> |
Please see documentations for detailed sample usage and configuration.
Hope you enjoy this new addition!
Ray
No comments:
Post a Comment