标签: lucene
使用lucene 3.5.0时, 索引到RAMDirectory后, 是否有一种简单的方法可以知道它使用了多少内存?
答案 0 :(得分:3)
http://lucene.apache.org/java/3_5_0/api/core/org/apache/lucene/store/RAMDirectory.html#sizeInBytes%28%29
<强> sizeInBytes 强> public final long sizeInBytes() 返回此目录中所有文件的总大小(以字节为单位)。目前这已量化为RAMOutputStream.BUFFER_SIZE。
<强> sizeInBytes 强>
public final long sizeInBytes()
返回此目录中所有文件的总大小(以字节为单位)。目前这已量化为RAMOutputStream.BUFFER_SIZE。