我可以在没有确认的情况下清除 NCache 缓存吗?
Can I clear an NCache cache without confirmation?
我有一个 NCache 实现(在一对服务器上以复制格式配置,如果这有任何区别的话),我想编写脚本来清除缓存。我有一个 powershell 脚本,它使用适当的参数调用 NCache clearcache.exe 工具(在 \bin\tools 中),但该工具随后提示我确认我实际上 do 想清除非空缓存(为什么是的,我这样做!)。
我已经查看了命令的内联帮助(很少)和在线 NCache 文档(http://www.alachisoft.com/resources/docs/ncache/help/main.html),但没有任何关于附加参数(如 --force
选项或之类的)。
有没有这样的选项可以让我在不与脚本交互的情况下清除缓存?是否有其他方法可以完成同样的事情?
如果您查看第 35 页 here(NCache 命令行工具指南),您会发现可以使用 /F
强制清除缓存。
打开 CMD 并转到 NCache 安装文件夹,然后 bin/tools
对我来说是 C:\Program Files\NCache\bin\tools
运行 clearcache.exe /?
你会得到
C:\Program Files\NCache\bin\tools>clearcache.exe /?
Alachisoft (R) NCache Utility ClearCache. Version 4.6.0.0
Copyright (C) Alachisoft 2015. All rights reserved.
Usage: clearcache cache-name [option[...]].
Argument:
cache-name(s)
Specifies one or more name(s) of caches separated by space registered on
the server. The cache(s) with this/these name(s) is/are started on the
server. Note: Space-separated cache names are to be specified in case of
multiple caches.
Option:
/w /webcontent (Only avaiable in Enterprise edition)
Clear Javascript and CSS only.
/F /forceclear
Force the clearing of the cache. If not specified, the user is asked before
clearing the cache.
/G /nologo
Suppresses display of the logo banner.
/?
Displays a detailed help screen
所以 运行 使用 /F
或完整形式的 /forceclear
选项
清除缓存
我有一个 NCache 实现(在一对服务器上以复制格式配置,如果这有任何区别的话),我想编写脚本来清除缓存。我有一个 powershell 脚本,它使用适当的参数调用 NCache clearcache.exe 工具(在 \bin\tools 中),但该工具随后提示我确认我实际上 do 想清除非空缓存(为什么是的,我这样做!)。
我已经查看了命令的内联帮助(很少)和在线 NCache 文档(http://www.alachisoft.com/resources/docs/ncache/help/main.html),但没有任何关于附加参数(如 --force
选项或之类的)。
有没有这样的选项可以让我在不与脚本交互的情况下清除缓存?是否有其他方法可以完成同样的事情?
如果您查看第 35 页 here(NCache 命令行工具指南),您会发现可以使用 /F
强制清除缓存。
打开 CMD 并转到 NCache 安装文件夹,然后 bin/tools
对我来说是 C:\Program Files\NCache\bin\tools
运行 clearcache.exe /?
你会得到
C:\Program Files\NCache\bin\tools>clearcache.exe /?
Alachisoft (R) NCache Utility ClearCache. Version 4.6.0.0 Copyright (C) Alachisoft 2015. All rights reserved.
Usage:
clearcache cache-name [option[...]].
Argument:
cache-name(s)
Specifies one or more name(s) of caches separated by space registered on the server. The cache(s) with this/these name(s) is/are started on the server. Note: Space-separated cache names are to be specified in case of multiple caches.
Option:
/w /webcontent (Only avaiable in Enterprise edition) Clear Javascript and CSS only.
/F /forceclear
Force the clearing of the cache. If not specified, the user is asked before clearing the cache.
/G /nologo
Suppresses display of the logo banner.
/?
Displays a detailed help screen
所以 运行 使用 /F
或完整形式的 /forceclear
选项