数MBのオブジェクトをキャッシュしようとしているうちに、キャッシュされたままEhcacheがサイズを倍増することがわかりました。Ehcacheがメモリに格納する文字列のサイズを2倍にするのはなぜですか?
どうしてですか?それは最適化ですか?キャンセルできますか?
次のコード
public class Main {
public static void main(String[] args) {
CacheManager manager = CacheManager.newInstance();
Cache oneCache = manager.getCache("OneCache");
String oneMbString = generateDummyString(1024 * 1024);
Element bigElement = new Element("key", oneMbString);
oneCache.put(bigElement);
System.out.println("size: "+ oneCache.getSize());
System.out.println("inMemorySize: " + oneCache.calculateInMemorySize());
System.out.println("size of string: " + oneMbString.getBytes().length);
}
/**
* Generate a dummy string
*
* @param size the size of the string in bytes.
* @return
*/
private static String generateDummyString(int size) {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < size; i++) {
sb.append("a");
}
return sb.toString();
}
}
ウィル出力:
サイズ:1
inMemorySize:文字列の2097384
サイズ:1048576
PS:ehcache.xmlファイル:Javaで
<?xml version="1.0" encoding="UTF-8"?>
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="ehcache.xsd"
updateCheck="false" monitoring="autodetect" maxBytesLocalHeap="512M">
<cache name="OneCache"
eternal="false"
overflowToDisk="false"
diskPersistent="false"
memoryStoreEvictionPolicy="LFU">
<sizeOfPolicy maxDepth="10000" maxDepthExceededBehavior="abort"/>
</cache>
</ehcache>
generateDummyString関数でユニコード文字を使用してみてください。 – sgmoore
@sgmoore試してみましたが、何も変わりませんでした。また、私はバイトの文字列のサイズとメモリサイズの両方をチェックしているので、文字列のサイズが2倍になったら、気づいたでしょう。 – Flowryn