0

在 Java 中,如果内存用完,弱引用会被垃圾回收。在 Linux 中,malloc()总是返回一个强引用,即。在调用者调用free()函数之前,指针永远不会被释放。

我想为缓存分配一个缓冲区,当内存用完时可以自动释放,如下所示:

cache_t cache;
if (! cache_alloc(&cache))
    die("Memory out");

cache_lock(&cache); // realloc cache mem if it is collected

if (! cache->user_init) { // The "user_init" maybe reset if the cache mem is collected
  // lazy-init the cache...
  load_contents(cache->mem, ...);
  cache->user_init = 1;
}

// do with cache..
stuff_t *stuff = (stuff_t *) cache->mem;
...

cache_unlock(&cache);

输出中的buffand似乎与磁盘 IO 相关:cachevmstat

$ vmstat
procs -----------memory---------- ---swap-- -----io---- -system-- ----cpu----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa
 0  0  51604 554220  13384 314852    3   10   411   420  702 1063  8  3 75 14

好吧,我想进一步了解我的示例中的缓存是否可以反映在 vmstat 输出的“缓存”列中。

4

1 回答 1

1

确实没有什么好的方法——C 内存模型根本不允许 Java 内存模型允许的那种行为。当与操作系统交互时,Java 的内存模型当然是建立在 C 模型之上的,这就是为什么 Java 堆必须由应用程序启动器手动限制的原因。

“buff”和“cache”列与内核使用的页面/磁盘缓存和内部缓冲区有关。这些缓存由内核自动处理 - 例如,读取文件会将内容放在“缓存”使用编号中,就像内存不足会将其提交给交换设备(“swpd”)一样。

于 2012-09-28T01:45:17.687 回答