|
确实,如果动态分配的话,要用到虚拟内存。
第2个问题,可以在注册表里给分配分页内存池的大小,使之比x的容量大50M,
In addition, when FBWF operates with a dynamic cache, its memory is allocated from the paged pool. In the registry key, configure the paged pool size to be 50 MB larger than the FBWF threshold.
The registry key is
HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management, PagedPoolSize
where PagedPoolSize is a REG_DWORD.
The recommended value for PagedPoolSize is (FBWF threshold size + 50MB)*1024*1024.
For example, with a 128 MB FBWF threshold, PagedPoolSize = (128+50)*1024*1024) = 186646528 |
|