如何增加 NCache 内存分配

How to increase NCache memory allocation

据我所知,内存分配是在创建缓存时设置的:

createcache demoCache /s 127.0.0.1 /S 1024

您知道是否可以在不重新安装缓存的情况下增加 NCache 的内存分配吗?我需要在生产环境中增加 NCache 内存大小,重新安装缓存是我最后能做的。

谢谢!

我找到了解决方案:

  1. 需要停止缓存:stopCache demoCache /s 127.0.0.1
  2. 以管理员身份打开服务器的配置文件:C:\Program Files\NCache\config\config.ncconf
  3. 根据需要更新内存分配,cache-config节点:

type="heap" cache-size="2048mb"

  1. 重新启动缓存。